OK, I finally hooked up 2 more 3 ways this afternoon as a confirmation/test. I setup a Martin Jerry ST01 on each end of a 3 way circuit to make sure that they stay in sync between both the live and load end. There is no integration between them, so as far as each one knows, it is a dumb switch on the other end.
Everything is hooked up according to the diagram below (travelers tied together, live/hot connected on one switch and switched/light on the other). I have 6 LED bulbs on this circuit. I am not sure of the wattage, but I would assume that it would be in the ballpark of 40 watts total.
Both switches were flashed via Tuya Convert and have never been opened or had any hardware modifications of any kind done. Firmware is stock tasmota and the only configuration done was the device template and rule below.
As far as I can tell, everything is working perfectly for now. I can use either switch and the other is updated. I can control either switch via the web interface of the switch or Home Assistant and they stay in sync. I haven’t found a way yet to get them to get out of sync.
Firmware: 8.1.0(tasmota)
Device Template: {“NAME”:“MJ 3 Way”,“GPIO”:[0,0,0,0,52,53,0,0,21,9,157,0,0],“FLAG”:0,“BASE”:18}
Rule1: on power1#state=0 do backlog ledpower1 0; ledpower2 1 endon on power1#state=1 do backlog ledpower1 1; ledpower2 0 endon
Home Assistant YAML:
light:
- platform: mqtt
name: Basement 3way 1
state_topic: "stat/basement3way1/POWER"
command_topic: "cmnd/basement3way1/POWER"
availability_topic: "tele/basement3way1/LWT"
qos: 1
payload_on: "ON"
payload_off: "OFF"
payload_available: "Online"
payload_not_available: "Offline"
retain: false
- platform: mqtt
name: Basement 3way 2
state_topic: "stat/basement3way2/POWER"
command_topic: "cmnd/basement3way2/POWER"
availability_topic: "tele/basement3way2/LWT"
qos: 1
payload_on: "ON"
payload_off: "OFF"
payload_available: "Online"
payload_not_available: "Offline"
retain: false
I will keep them both connected like this for a couple weeks to make sure that things keep working. Eventually I am going to replace one of them with a dumb switch though so I can use the smart switch elsewhere in the house.
Let me know if there is anything else that I can test for you!