-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
What is the distance between the 2 devices ? Otherwise, you can use the TasmotaClient feature which is intended to use a serial link between an Arduino platform and a Tasmota. Latest option which would be closer to your case is still to use Tasmota on ESP32 on both side with Berry language. Your right ESP could subscribe to topic on the right network (needs it's own MQTT broker) and formward those message through serial to the left ESP. |
Beta Was this translation helpful? Give feedback.
-
|
Too bad, I thought that Tasmota only works from the end device via MQTT over Wifi. But I think it would be a nice feature. I check out the ESP/Arduino Serial Connetion and RS485 as Transmitter. I have different buildings available with different communications cable connections. I could test that between 30 and 80m. |
Beta Was this translation helpful? Give feedback.

What is the distance between the 2 devices ?
There a Tasmota features called Range Extender which would create an WIfi AccessPoint on a Tasmota. So if you put the range extender on the edge of your normal Wifi, may be this could extend the wifi up to the other ESP ?
Otherwise, you can use the TasmotaClient feature which is intended to use a serial link between an Arduino platform and a Tasmota.
As of today it is not meant to connect 2 Tasmota togethers but you can program an ESP8266/32 with the Arduino framework and the TasmotaClient library to communication over the RS485 link (the right ESP would not run Tasmota in that case)
Latest option which would be closer to your case is still to …