forked from tasmota/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request tasmota#558 from tasmota/development
merge dev to master
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Serial to TCP Bridge | ||
|
||
!!! info "Connect to a serial device over the network" | ||
|
||
Needs `#define USE_TCP_BRIDGE`. This is available in the `zbbridge` build so you can use that or [compile your own build](Compile-your-build). | ||
|
||
This feature can be used to add a "serial to network" functionality to a device that is otherwise serial only. You connect the device to a ESP8266/ESP32 and Tasmota will bridge between serial and network. | ||
|
||
This is commonly used with a CCxxxx Zigbee based module to connect it to a remote ZHA or zigbee2mqtt instance. | ||
|
||
## Commands | ||
|
||
* `TCPBaudRate <x>`: sets the baudrate for serial (only 8N1 mode), min `1200`, max `115200` by 1200 increments. | ||
* `TCPStart <port>`: listens to port `<port>`. This features supports 2 parallel TCP connections, which can be useful if you need a terminal + a specific protocol (like XMODEM). The 3rd connection will disconnect an previous connection. The number of parallel connections is a compile-time option. | ||
* `TCPStart 0` or `TCPStart`: shuts down the TCP server and disconnects any existing connection. | ||
|
||
For security reasons, the TCP bridge is not started at boot, and requires an explicit TCPStart command (can be automated with Rules). | ||
|
||
## Configuration | ||
|
||
First assign two GPIOs to `TCP Tx (208)` and `TCP Rx (209)` types in the "Configure Module" page. The Rx/Tx are relative to the ESP device. For example with ESP01's hardware serial, set GPIO1 as TCP Tx and GPIO3 as TCP Rx. | ||
|
||
Then set baud rate with `TCPBaudRate` and port with `TCPStart`. | ||
|
||
You can add a rule to start the TCP server at boot. | ||
To do this for port 8888, run `Rule1 ON System#Boot do TCPStart 8888 endon` then enable with `Rule1 1` and restart the device. | ||
|
||
## Additional resources | ||
|
||
[PR](https://github.com/arendst/Tasmota/pull/8702) | ||
[Sonoff ZBBridge reference](https://zigbee.blakadder.com/Sonoff_ZBBridge.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters