本帖最后由 s2233 于 2024-1-21 13:45 编辑
虽然不是一样的模块,改改GPIO 就行了
switch:
- platform: gpio
name: ${name}
icon: mdi:ceiling-light-outline
pin: GPIO12
id: light
status_led:
pin:
number: GPIO13
inverted: yes
binary_sensor:
- platform: gpio # (适用传统翘版开关)
id: physical_switch
internal: true
filters: #过滤器
- delayed_on_off: 200ms # 去抖动。(在指定时间内保持相同状态时才发送 ON 或 OFF 值)
pin:
number: GPIO14
mode: INPUT_PULLUP
inverted: false # 反转二进制状态,即将ON状态报告为OFF,反之亦然。默认为False。
on_press:
then:
- switch.toggle: light
on_release:
then:
- switch.toggle: light
|