mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
Net-to-serial broadcast messages to all clients and other cleanups (#20)
* Cleanup and maintenance * Net-to-serial broadcast messages to all clients This will make all clients to stay in sync with any operation occurring, like when having multiple JMRI instances * Update README and python version in containers
This commit is contained in:
@@ -96,7 +96,8 @@ Browse to `http://localhost:8000`
|
||||
|
||||
The DCC++ EX connector exposes an Arduino board running DCC++ EX Command Station,
|
||||
connected via serial port, to the network, allowing commands to be sent via a
|
||||
TCP socket.
|
||||
TCP socket. A response generated by the DCC++ EX board is sent to all connected clients,
|
||||
providing synchronization between multiple clients (eg. multiple JMRI instances).
|
||||
|
||||
Its use is not needed when running DCC++ EX from a [WiFi](https://dcc-ex.com/get-started/wifi-setup.html) capable board (like when
|
||||
using an ESP8266 module or a [Mega+WiFi board](https://dcc-ex.com/advanced-setup/supported-microcontrollers/wifi-mega.html)).
|
||||
@@ -112,7 +113,7 @@ Settings may need to be customized based on your setup.
|
||||
```bash
|
||||
$ cd daemons
|
||||
$ podman build -t dcc/net-to-serial .
|
||||
$ podman run -d -p 2560:2560 dcc/net-to-serial
|
||||
$ podman run --group-add keep-groups --device /dev/ttyACM0 -p 2560:2560 dcc/net-to-serial
|
||||
```
|
||||
|
||||
### Manual setup
|
||||
|
Reference in New Issue
Block a user