1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 03:12:20 +01:00

Merge branch 'dev' into mcp4461

This commit is contained in:
Oliver Kleinecke
2025-02-07 11:14:52 +01:00
committed by GitHub
15 changed files with 267 additions and 51 deletions

View File

@@ -142,3 +142,8 @@ on_mirage:
then:
- lambda: |-
ESP_LOGD("mirage", "Mirage data: %s", format_hex(x.data).c_str());
on_toto:
then:
- logger.log:
format: "on_toto: %u %u %u"
args: ["x.rc_code_1", "x.rc_code_2", "x.command"]

View File

@@ -190,3 +190,10 @@ button:
channel: 1
button: 1
check: 1
- platform: template
name: Toto
on_press:
- remote_transmitter.transmit_toto:
command: 0xEC
rc_code_1: 0x0D
rc_code_2: 0x0D

View File

@@ -3,7 +3,6 @@ remote_transmitter:
pin: ${pin}
carrier_duty_percent: 50%
clock_resolution: ${clock_resolution}
one_wire: ${one_wire}
rmt_symbols: ${rmt_symbols}
use_dma: ${use_dma}

View File

@@ -1,7 +1,6 @@
substitutions:
pin: GPIO2
clock_resolution: "2000000"
one_wire: "true"
rmt_symbols: "64"
use_dma: "true"

View File

@@ -1,7 +1,6 @@
substitutions:
pin: GPIO2
clock_resolution: "2000000"
one_wire: "true"
rmt_symbols: "64"
use_dma: "true"

View File

@@ -1,7 +1,6 @@
substitutions:
pin: GPIO38
clock_resolution: "2000000"
one_wire: "true"
rmt_symbols: "64"
use_dma: "true"