请问ESPHOME用MQTT订阅主题收到的格式是0或1,怎样转换成ON或OFF? 代码中的 主题(wifible)是收到别的设备发送来的消息 0 或 1 。0或1无法控制switch的开关。怎样把0转换成ON来控制switch开?
mqtt:
broker: bemfa.com
port: 9501
username: "bem999"
password: "1356962365"
switch:
- platform: gpio
name: "LED"
id: led
pin: GPIO2
inverted: true
# 订阅主题
state_topic: "wifible"
# 发布命令的主题
command_topic: "wifible"
|