I am currently running a Nous A5t multiple socket with tasmota via mqtt. It works well with Home Assistant. Nevertheless, I would like to operate this device with esphome in order to have a uniform administration. There is a device description here:
https://www.esphome-devices.com/devices/Nous-A5t#basic-configuration
In the yaml file there is a note that the small buttons are not working at the moment:
binary_sensor:
- platform: status
name: "${friendly_name} - Status"
device_class: connectivity
- platform: gpio
pin:
number: GPIO16
# mode: INPUT_PULLUP
inverted: True
id: "${friendly_name}_button_state0"
on_press:
- switch.toggle: button_switch1
- switch.toggle: button_switch2
- switch.toggle: button_switch3
# Small buttons currently not working
sensor:
- platform: wifi_signal
name: "${friendly_name} - Wifi Signal"
update_interval: 60s
icon: mdi:wifi
Does anyone have this device with esphome in operation and can say something about it? Of course I don’t want to go backwards.