Reticulum iterface via websocket with json #969
-
|
Hi! I'm novice user and I trying to plug my custom transport device (something like RNode) as interface for Reticulum. My device is working in local network via WebSocket with JSON inside it. I need to pass info about a final destination and entire packet as a byte array to JSON and send it to the websocket server. Then, its need to listen this ws to get a new incoming msgpack, to get a reticulum packet from it. Could You help me to compose a custom interface for such device which I trying to use in Meshchat? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Take a look at the custom interface example code posted here. That should be very easy to adapt to what you want. The entire skeleton with all the required functions is there. Instead of connecting to a serial port, have it connect to your websocket server, then read from and write to that instead. |
Beta Was this translation helpful? Give feedback.
Take a look at the custom interface example code posted here. That should be very easy to adapt to what you want. The entire skeleton with all the required functions is there.
Instead of connecting to a serial port, have it connect to your websocket server, then read from and write to that instead.