Sonoff TX with ESPHome

Hi all,

I want to buy a Sonoff TX (3 gang) and if possible flash it with ESPHome.
The TX isn’t listed yet on the ESPHome page and i wonder if i can use the T1 as an example and go from there…

I know Drzzs has a video where he’s flashing it with tasmota, but don’t prefer MQTT.

Thanks!

As far as I can see, it should be the same as T1 since Tasmota seems to be able to use the same profile! https://github.com/arendst/Sonoff-Tasmota/issues/5918#issuecomment-511414257

Yes you can. I just flashed my T2 (3 gang) using the configuration for Sonoff T1 UK 3 Gang on ESPHome page. Turns out the pings are the same. Works like a charm. :+1:

Thanks for the info guys!
T2EU3C is incomming, i’ll keep you posted

Traced out the GPIO0 for the T2EU1C and T2EU2C easy accessible on the “frontside” of the PCB. (Right side of the resistor marked on the image)
The PCB Writing is T1EU but this was inside my T2EUx from BangGood.

thanks! I got mine yesterday…it’s now up and running :ok_hand:

only got one question…
in my hallway automation i use motion sensors wich turn the light on after sunset, but how to incorporate the switch?

this is my automation for now

- alias: 'gang aan'
    initial_state: true 
    trigger:
      - platform: state
        entity_id: binary_sensor.presence_5
        to: 'on'
      - platform: state
        entity_id: binary_sensor.presence_7
        to: 'on'
      - platform: state
        entity_id: switch.gang
        to: 'on'
    condition:
      - condition: or
        conditions:
          - condition: sun
            after: sunset
            after_offset: "-01:00:00"
          - condition: time
            before: '08:00:00'
    action:
      - service: homeassistant.turn_on
        entity_id: light.gang

got the solution, i made a separate automation for it, now we’re good :muscle:

1 Like