This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| substitutions: | |
| variable1: "test1" | |
| esphome: | |
| name: ${variable1} | |
| friendly_name: Test1 | |
| esp8266: | |
| board: d1_mini |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: est-poe-32 | |
| friendly_name: EST-PoE-32 | |
| esp32: | |
| board: esp32dev | |
| framework: | |
| type: esp-idf | |
| # Enable logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Notification Commands - The useful commands are for Android only. | |
| # See this documentation for more information: https://companion.home-assistant.io/docs/notifications/notification-commands | |
| # Pause YouTube | |
| service: notify.mobile_app_marc_phone | |
| data: | |
| message: command_media | |
| data: | |
| media_package_name: com.google.android.youtube | |
| media_command: pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install Samba | |
| sudo apt install samba | |
| # Add Share to Samba configuration file | |
| sudo nano /etc/samba/smb.conf | |
| #At the bottom of the file add share details, e.g. | |
| [isos] | |
| comment = PXE Boot ISOs | |
| path = /home/pxe/iventoy-1.0.19/iso |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example from YouTube video: https://www.youtube.com/watch?v=0XH61uCqMDw | |
| # Air Quality sensor adapted to not use Home Assistant | |
| # but use MQTT and HTTP instead. | |
| # Original Air Quality Sensor video: https://www.youtube.com/watch?v=XIY1xOzM3fs | |
| ### START - Update this section with relevant details ### | |
| substitutions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": "021eb3f3192c53ca", | |
| "type": "tab", | |
| "label": "Switchbot", | |
| "disabled": false, | |
| "info": "", | |
| "env": [] | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Add module called 'crypto' | |
| const token = msg.token; | |
| const secret = msg.secret; | |
| const t = Date.now(); | |
| const nonce = msg.payload; | |
| const data = token + t + nonce; | |
| const signTerm = crypto.createHmac('sha256', secret) | |
| .update(Buffer.from(data, 'utf-8')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: bme680 | |
| friendly_name: Air Quality Sensor | |
| esp8266: | |
| board: d1_mini | |
| # Enable logging | |
| logger: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example from YouTube video: https://www.youtube.com/watch?v=XIY1xOzM3fs | |
| # Push Button, Status LEDs, Analog Input (FSR Sensor), Air Quality Sensor, Distance Sensor | |
| ### START - Update this section with relevant details ### | |
| substitutions: | |
| device_name: "device-name-here" | |
| friendly_name: Device Name Here | |
| board_type: d1_mini |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: water-sensor-1 | |
| friendly_name: Water Sensor 1 | |
| esp8266: | |
| board: d1_mini | |
| # Enable logging | |
| logger: |
OlderNewer