├── .DS_Store ├── .gitignore ├── Coding_Practices_Tips_and_Tricks ├── .DS_Store ├── 1_Foundation │ ├── .DS_Store │ ├── ESPHOME │ │ ├── archives │ │ │ └── here_be_your_old_yaml_files.txt │ │ ├── boards │ │ │ ├── esp32 │ │ │ │ └── secrets.yaml │ │ │ ├── esp8266 │ │ │ │ └── secrets.yaml │ │ │ └── rp2040 │ │ │ │ └── secrets.yaml │ │ ├── common │ │ │ ├── core │ │ │ │ └── secrets.yaml │ │ │ ├── display │ │ │ │ └── place_holder.txt │ │ │ ├── network │ │ │ │ └── place_holder.txt │ │ │ └── time │ │ │ │ └── place_holder.txt │ │ ├── fonts │ │ │ └── place_holder.txt │ │ ├── includes │ │ │ └── place_holder.txt │ │ ├── peripherals │ │ │ ├── cam │ │ │ │ └── place_holder.txt │ │ │ ├── spi │ │ │ │ └── place_holder.txt │ │ │ └── uart │ │ │ │ └── place_holder.txt │ │ ├── secrets.yaml │ │ ├── sensors │ │ │ ├── analogue │ │ │ │ └── place_holder.txt │ │ │ ├── binary │ │ │ │ └── place_holder.txt │ │ │ ├── bluetooth │ │ │ │ └── place_holder.txt │ │ │ ├── i2c │ │ │ │ └── place_holder.txt │ │ │ ├── one_wire │ │ │ │ └── place_holder.txt │ │ │ ├── spi │ │ │ │ └── place_holder.txt │ │ │ └── uart │ │ │ │ └── place_holder.txt │ │ └── templates │ │ │ └── place_holder.txt │ ├── README.md │ └── images │ │ ├── Splash_Screen_1_1.jpg │ │ └── Splash_Screen_1_2.jpg ├── 2_standard_board_configurations │ ├── .DS_Store │ ├── ESPHOME │ │ ├── boards │ │ │ └── esp32 │ │ │ │ └── secrets.yaml │ │ ├── common │ │ │ ├── core │ │ │ │ ├── secrets.yaml │ │ │ │ └── settings.yaml │ │ │ └── network │ │ │ │ ├── bluetooth_tracker_proxy.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── webserver.yaml │ │ │ │ └── wifi.yaml │ │ └── secrets.yaml │ ├── README.md │ └── images │ │ └── Thumbnail.jpg └── 3_our_first_device │ ├── .DS_Store │ ├── ESPHOME │ ├── boards │ │ ├── esp32 │ │ │ ├── c3_mini_espressif.yaml │ │ │ ├── c6_firebeetle_2_idf.yaml │ │ │ ├── cam.yaml │ │ │ ├── d1_mini.yaml │ │ │ ├── e_firebeetle_2.yaml │ │ │ ├── firebeetle_v4.yaml │ │ │ ├── s2.yaml │ │ │ ├── s2_mini.yaml │ │ │ ├── s3_firebeetle_2_idf.yaml │ │ │ ├── s3n16r8.yaml │ │ │ ├── s_nodemcu.yaml │ │ │ ├── secrets.yaml │ │ │ └── wt32_eth01.yaml │ │ ├── esp8266 │ │ │ ├── d1_mini.yaml │ │ │ ├── d1_mini_pro.yaml │ │ │ └── secret.yaml │ │ └── rp2040 │ │ │ ├── pico_w.yaml │ │ │ └── secret.yaml │ ├── common │ │ ├── core │ │ │ ├── secrets.yaml │ │ │ └── settings.yaml │ │ └── network │ │ │ ├── bluetooth_tracker_proxy.yaml │ │ │ ├── secrets.yaml │ │ │ ├── webserver.yaml │ │ │ └── wifi.yaml │ └── secrets.yaml │ ├── README.md │ └── images │ └── YouTube_Thumbnail.jpg ├── FUNDING.yml ├── LICENSE ├── Lets_build_a_room_sensor ├── Part 0 │ ├── .DS_Store │ ├── README.md │ └── code.yaml ├── Part 1 │ ├── Bluetooth.yaml │ ├── DHT22.yaml │ ├── Images │ │ └── YouTube Thumbnail - ESPHome - Let's build a room sensor - Part 1 - Bluetooth proxy and the DHT 22.png │ ├── README.md │ └── esphome-room-sensors.yaml ├── Part 2 │ ├── Images │ │ └── Let's build a room sensor - Part 2 - BH1750 I2C Light Sensor.png │ ├── README.md │ └── esphome-room-sensors.yaml ├── Part 3 │ ├── Images │ │ └── Home-Automator-Thumbnail.png │ ├── README.md │ └── esphome-room-sensors.yaml ├── Part 4 │ ├── Images │ │ ├── TTP223 touch sensor.png │ │ ├── Home-Automator-Thumbnail-Part 4.png │ │ ├── Overhead Room Sensor Package and Simulator.png │ │ └── Room Sensor Package 4.png │ ├── README.md │ ├── Simulator │ │ ├── ESPHome_Simulator.yaml │ │ ├── Images │ │ │ └── Simulator.png │ │ └── README.md │ ├── automation.yaml │ └── esphome-room-sensors.yaml └── Part 5 │ ├── Images │ ├── Room Sensor Package 4_bb.png │ ├── YouTube Thumbnail - ESPHome - Add PIR.jpg │ ├── pir-bottom.png │ ├── pir-top-off.png │ └── pir-top.png │ ├── README.md │ ├── automation.yaml │ └── esphome-room-sensors.yaml ├── Livestreams ├── .DS_Store ├── 06 July 2024 - Let's rework our Room Sensor Package Code │ ├── .DS_Store │ ├── Code │ │ ├── .DS_Store │ │ ├── boards │ │ │ ├── .DS_Store │ │ │ ├── esp32_d1_mini.yaml │ │ │ ├── esp32_s2_mini.yaml │ │ │ ├── esp32_s_nodemcu.yaml │ │ │ ├── esp32s3n16r8.yaml │ │ │ ├── esp8266_d1_mini.yaml │ │ │ ├── rp2040_w.yaml │ │ │ └── secrets.yaml │ │ ├── common │ │ │ ├── bluetooth.yaml │ │ │ ├── secret.yaml │ │ │ ├── secrets.yaml │ │ │ ├── settings.yaml │ │ │ ├── webserver.yaml │ │ │ └── wifi.yaml │ │ ├── esphome-room-sensors.yaml │ │ ├── fonts │ │ │ ├── Pictogrammers.png │ │ │ └── README.md │ │ ├── includes │ │ │ └── picow_intLED.h │ │ ├── secrets.yaml │ │ └── sensors │ │ │ ├── bh1750.yaml │ │ │ ├── dht22.yaml │ │ │ ├── hc-sr501.yaml │ │ │ ├── secret.yaml │ │ │ ├── sht40.yaml │ │ │ └── spg30.yaml │ └── README.md └── images │ └── Home-Automator-Background-Q&A-Green-Recovered.png ├── Non_video_Related └── Sonoff │ └── Basic 2 │ └── Basic_2.yaml └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/.gitignore -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/.DS_Store -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/1_Foundation/.DS_Store -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/archives/here_be_your_old_yaml_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/boards/esp32/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/boards/esp8266/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/boards/rp2040/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/common/core/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/common/display/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/common/network/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/common/time/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/fonts/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/includes/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/peripherals/cam/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/peripherals/spi/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/peripherals/uart/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/secrets.yaml: -------------------------------------------------------------------------------- 1 | # Here comes your secrets! -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/analogue/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/binary/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/bluetooth/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/i2c/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/one_wire/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/spi/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/sensors/uart/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/ESPHOME/templates/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/1_Foundation/README.md -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/images/Splash_Screen_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/1_Foundation/images/Splash_Screen_1_1.jpg -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/1_Foundation/images/Splash_Screen_1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/1_Foundation/images/Splash_Screen_1_2.jpg -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/.DS_Store -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/boards/esp32/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/core/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/core/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/core/settings.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/bluetooth_tracker_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/bluetooth_tracker_proxy.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/webserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/webserver.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/common/network/wifi.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/ESPHOME/secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/README.md -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/images/Thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/2_standard_board_configurations/images/Thumbnail.jpg -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/.DS_Store -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/c3_mini_espressif.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/c3_mini_espressif.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/c6_firebeetle_2_idf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/c6_firebeetle_2_idf.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/cam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/cam.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/d1_mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/d1_mini.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/e_firebeetle_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/e_firebeetle_2.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/firebeetle_v4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/firebeetle_v4.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s2.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s2_mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s2_mini.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s3_firebeetle_2_idf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s3_firebeetle_2_idf.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s3n16r8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s3n16r8.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s_nodemcu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/s_nodemcu.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/wt32_eth01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp32/wt32_eth01.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp8266/d1_mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp8266/d1_mini.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp8266/d1_mini_pro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp8266/d1_mini_pro.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/esp8266/secret.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/rp2040/pico_w.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/rp2040/pico_w.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/boards/rp2040/secret.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/core/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/core/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/core/settings.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/bluetooth_tracker_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/bluetooth_tracker_proxy.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../../secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/webserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/webserver.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/common/network/wifi.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/ESPHOME/secrets.yaml -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/README.md -------------------------------------------------------------------------------- /Coding_Practices_Tips_and_Tricks/3_our_first_device/images/YouTube_Thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Coding_Practices_Tips_and_Tricks/3_our_first_device/images/YouTube_Thumbnail.jpg -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/LICENSE -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 0/.DS_Store -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 0/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 0/code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 0/code.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 1/Bluetooth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 1/Bluetooth.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 1/DHT22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 1/DHT22.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 1/Images/YouTube Thumbnail - ESPHome - Let's build a room sensor - Part 1 - Bluetooth proxy and the DHT 22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 1/Images/YouTube Thumbnail - ESPHome - Let's build a room sensor - Part 1 - Bluetooth proxy and the DHT 22.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 1/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 1/esphome-room-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 1/esphome-room-sensors.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 2/Images/Let's build a room sensor - Part 2 - BH1750 I2C Light Sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 2/Images/Let's build a room sensor - Part 2 - BH1750 I2C Light Sensor.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 2/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 2/esphome-room-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 2/esphome-room-sensors.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 3/Images/Home-Automator-Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 3/Images/Home-Automator-Thumbnail.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 3/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 3/esphome-room-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 3/esphome-room-sensors.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Images/ TTP223 touch sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Images/ TTP223 touch sensor.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Images/Home-Automator-Thumbnail-Part 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Images/Home-Automator-Thumbnail-Part 4.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Images/Overhead Room Sensor Package and Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Images/Overhead Room Sensor Package and Simulator.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Images/Room Sensor Package 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Images/Room Sensor Package 4.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Simulator/ESPHome_Simulator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Simulator/ESPHome_Simulator.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Simulator/Images/Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Simulator/Images/Simulator.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/Simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/Simulator/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/automation.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 4/esphome-room-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 4/esphome-room-sensors.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/Images/Room Sensor Package 4_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/Images/Room Sensor Package 4_bb.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/Images/YouTube Thumbnail - ESPHome - Add PIR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/Images/YouTube Thumbnail - ESPHome - Add PIR.jpg -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/Images/pir-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/Images/pir-bottom.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/Images/pir-top-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/Images/pir-top-off.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/Images/pir-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/Images/pir-top.png -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/README.md -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/automation.yaml -------------------------------------------------------------------------------- /Lets_build_a_room_sensor/Part 5/esphome-room-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Lets_build_a_room_sensor/Part 5/esphome-room-sensors.yaml -------------------------------------------------------------------------------- /Livestreams/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/.DS_Store -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/.DS_Store -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/.DS_Store -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/.DS_Store -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32_d1_mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32_d1_mini.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32_s2_mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32_s2_mini.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32_s_nodemcu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32_s_nodemcu.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32s3n16r8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp32s3n16r8.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp8266_d1_mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/esp8266_d1_mini.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/rp2040_w.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/rp2040_w.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/boards/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/bluetooth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/bluetooth.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/secret.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/settings.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/webserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/webserver.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/wifi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/common/wifi.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/esphome-room-sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/esphome-room-sensors.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/fonts/Pictogrammers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/fonts/Pictogrammers.png -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/fonts/README.md -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/includes/picow_intLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/includes/picow_intLED.h -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/secrets.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/bh1750.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/bh1750.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/dht22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/dht22.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/hc-sr501.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/hc-sr501.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/secret.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/sht40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/sht40.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/spg30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/Code/sensors/spg30.yaml -------------------------------------------------------------------------------- /Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/06 July 2024 - Let's rework our Room Sensor Package Code/README.md -------------------------------------------------------------------------------- /Livestreams/images/Home-Automator-Background-Q&A-Green-Recovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Livestreams/images/Home-Automator-Background-Q&A-Green-Recovered.png -------------------------------------------------------------------------------- /Non_video_Related/Sonoff/Basic 2/Basic_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/Non_video_Related/Sonoff/Basic 2/Basic_2.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homeautomatorza/esphome/HEAD/README.md --------------------------------------------------------------------------------