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
| """Shelly 1PM Gen4 Pure V2 Quirk using the QuirkBuilder pattern. | |
| This version uses the correct AttributeDefs pattern within the custom clusters | |
| to ensure the .replaces() method works correctly during initialization. | |
| """ | |
| from __future__ import annotations | |
| import enum | |
| import 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
| blueprint: | |
| name: Use a Terncy Smart Dial to control covers | |
| description: | | |
| • Turn the dial left or right to change the cover position. | |
| • Single click to toggle open or close fully. | |
| • Double click to set a favorite cover position. | |
| • Triple, Quadruple, and Quintuple clicks are configurable. | |
| domain: automation | |
| input: | |
| dial: |
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: | |
| # ... | |
| includes: | |
| - stream_server.h | |
| - stream_server.cpp | |
| uart: | |
| id: uart_bus | |
| # ... | |
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
| blueprint: | |
| name: Battery Level Notification 10 | |
| description: | |
| Send a notification to a device when battery drops below a specified | |
| value - Pick 10 devices | |
| domain: automation | |
| input: | |
| battery_entity_0: | |
| name: "Entity_01" | |
| selector: |
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: esphome_zb_bridge_eth | |
| platform: ESP32 | |
| board: esp-wrover-kit | |
| includes: | |
| - stream_server.h | |
| - stream_server.cpp | |
| ethernet: |