Hi,
I have purchased couple of https://www.aliexpress.com/item/1005004025767107.html devices. When I got them I have discovered that do not come with ESP chip but luckily the chip they have (BL2028N) is pin compatible with ESP-02S. So I have swapped the boards and as I was having problems mapping the GPIOs in ESPHome I have flushed tasmota as they have brilliant procedure for flushing new devices. I have followed that and got all the GPIOs mapped (button gpio13, led gpio4 inverted and relay gpio12).
Tasmota template:
{“NAME”:“Generic 16A”,“GPIO”:[0,0,0,0,56,0,0,0,21,17,0,0,0],“FLAG”:0,“BASE”:18}
I have ran that for a couple of hours on tasmota to test it and to play with it but as I do not have any tasmota devices but I have 30+ ESPHome devices I have decided flush it back with ESPHome.
I came up with this config:
switch:
- platform: gpio
name: "Switch"
pin: 12
id: relay
restore_mode: RESTORE_DEFAULT_OFF
status_led:
pin:
number: 4
inverted: yes
binary_sensor:
- platform: gpio
pin:
number: 13
mode:
input: true
pullup: true
inverted: true
name: "Button"
on_press:
- switch.toggle: relay
Everything works fine - button, status led and the relay however after 10-15 minutes the device got very hot and I am not really sure what to do with that.
When it was running tasmota for a couple of hours it was warm but not even close to how hot it got when it was running ESPHome.
Any ideas what might be wrong here?
Thanks