Hi, got a sonoff t1-1 (r2)
i have flashed it to esphome, however the touchbutton is acting wierd, when i press the touch it recognizes it and send ON, immidiatly after it sends OFF
[00:36:29][D][binary_sensor:037]: ‘Living Room Roof Touchpad’: Sending state ON
[00:36:29][D][binary_sensor:037]: ‘Living Room Roof Touchpad’: Sending state OFF
my yaml looks like this:
esphome:
name: lr_switch
platform: ESP8266
board: esp01_1m
wifi:
ssid: "*************"
password: "**********"
# Enable logging
logger:
# Enable Home Assistant API
api:
password: '********'
ota:
password: '*********'
binary_sensor:
- platform: gpio
pin:
number: GPIO0
mode: INPUT_PULLUP
inverted: True
name: "Living Room Roof Touchpad"
switch:
- platform: gpio
name: "Living Room Roof"
pin: GPIO12
output:
- platform: esp8266_pwm
id: blue_led
pin: GPIO13
inverted: True
light:
- platform: monochromatic
name: "Living Room Blue LED"
output: blue_led
Am i doing something wrong or is it anything else?
note:
It was working a few hours ago when i had installed it, then i pushed update to change the name of the binary sensor and the switch…