/bridges

Serial to UDP bridge.

Primary LanguageRustMIT LicenseMIT

Bridges

A simple UDP-Serial interface.

Install ⚡

  • ⚙️ Cargo Install: cargo install bridges

Downloads 📦

Example

Running as server

Run bridges as server:

bridges --port /dev/ttyACM0:115200 -u 0.0.0.0:1234

Run your client:

netcat -u 127.0.0.1 1234

Running as client

Run bridges in client mode:

bridges --port /dev/ttyACM0:115200 -u 192.168.0.40:1234

Note that 192.168.0.40 should be your remote server address

Run your server: netcat -lp 1234