Merge branch 'main' into trigger-dry-contact-door-toggle
This commit is contained in:
commit
fbf979cab9
|
@ -9,6 +9,10 @@ external_components:
|
|||
preferences:
|
||||
flash_write_interval: 1min
|
||||
|
||||
text_sensor:
|
||||
- platform: version
|
||||
name: "Firmware Version"
|
||||
|
||||
ratgdo:
|
||||
id: ${id_prefix}
|
||||
input_gdo_pin: ${uart_rx_pin}
|
||||
|
|
|
@ -9,6 +9,10 @@ external_components:
|
|||
preferences:
|
||||
flash_write_interval: 1min
|
||||
|
||||
text_sensor:
|
||||
- platform: version
|
||||
name: "Firmware Version"
|
||||
|
||||
ratgdo:
|
||||
id: ${id_prefix}
|
||||
input_gdo_pin: ${uart_rx_pin}
|
||||
|
|
|
@ -52,6 +52,11 @@ namespace ratgdo {
|
|||
|
||||
// many things happening at startup, use some delay for sync
|
||||
set_timeout(SYNC_DELAY, [=] { this->sync(); });
|
||||
ESP_LOGD(TAG, " _____ _____ _____ _____ ____ _____ ");
|
||||
ESP_LOGD(TAG, "| __ | _ |_ _| __| \\| |");
|
||||
ESP_LOGD(TAG, "| -| | | | | | | | | | |");
|
||||
ESP_LOGD(TAG, "|__|__|__|__| |_| |_____|____/|_____|");
|
||||
ESP_LOGD(TAG, "https://paulwieland.github.io/ratgdo/");
|
||||
}
|
||||
|
||||
// initializing protocol, this gets called before setup() because
|
||||
|
|
|
@ -22,7 +22,7 @@ esphome:
|
|||
version: "2.5"
|
||||
|
||||
esp8266:
|
||||
board: d1_mini_lite
|
||||
board: d1_mini
|
||||
restore_from_flash: true
|
||||
|
||||
dashboard_import:
|
||||
|
|
Loading…
Reference in New Issue