├── .gitignore ├── README.md ├── door.yaml ├── images ├── pcb-bottom.jpg ├── pcb-bottom_s.jpg ├── pcb-top.jpg ├── pcb-top_s.jpg ├── pin-labels.jpg ├── product.jpg └── product_s.jpg ├── pir.yaml ├── sb1_uart.h ├── substitutions.yaml.example └── tools ├── decodeserial.py ├── serial-v0.txt └── serial-v3.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/README.md -------------------------------------------------------------------------------- /door.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/door.yaml -------------------------------------------------------------------------------- /images/pcb-bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/pcb-bottom.jpg -------------------------------------------------------------------------------- /images/pcb-bottom_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/pcb-bottom_s.jpg -------------------------------------------------------------------------------- /images/pcb-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/pcb-top.jpg -------------------------------------------------------------------------------- /images/pcb-top_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/pcb-top_s.jpg -------------------------------------------------------------------------------- /images/pin-labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/pin-labels.jpg -------------------------------------------------------------------------------- /images/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/product.jpg -------------------------------------------------------------------------------- /images/product_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/images/product_s.jpg -------------------------------------------------------------------------------- /pir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/pir.yaml -------------------------------------------------------------------------------- /sb1_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/sb1_uart.h -------------------------------------------------------------------------------- /substitutions.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/substitutions.yaml.example -------------------------------------------------------------------------------- /tools/decodeserial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/tools/decodeserial.py -------------------------------------------------------------------------------- /tools/serial-v0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/tools/serial-v0.txt -------------------------------------------------------------------------------- /tools/serial-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandond/esphome-tuya_pir/HEAD/tools/serial-v3.txt --------------------------------------------------------------------------------