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
| --- | |
| # | |
| # Let first talk about the different types in YAML | |
| # | |
| # It is important to understand the differences and terms. | |
| # Not just for configuration splitting, but in general! | |
| # | |
| # Scalar values: String, Integer, Float, Boolean, Null | |
| # Comments | |
| # Collections: List (sequence), Dictionary (mapping) (important for splitting!) |
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
| panel_custom: | |
| - name: zwavegraph2 | |
| sidebar_title: Z-Wave Graph | |
| sidebar_icon: mdi:access-point-network | |
| url_path: zwave |
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
| #ThermoZztat | |
| # These are example segments meant to be copied into the 3 main files. | |
| ############### Examples for Configuration.yaml ############### | |
| switch: | |
| - platform: mqtt | |
| name: "Upstairs Fan" | |
| command_topic: "cmnd/ThermoZztat/POWER1" | |
| state_topic: "stat/ThermoZztat/POWER1" | |
| qos: 1 |
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: doorbell | |
| platform: ESP8266 | |
| board: esp01_1m | |
| # WiFi connection, correct these | |
| # with values for your WiFi. | |
| wifi: | |
| ssid: !secret wifi_ssid |
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: | |
| devicename: ttgocam | |
| friendly_name: test esp32cam | |
| ip_address: 192.168.1.230 | |
| esphome: | |
| name: $devicename | |
| platform: ESP32 | |
| board: esp-wrover-kit |