Telemetry uploader for ASRTU-1 and BY-04, rewriting in Golang.
removed ui (ncurses).
original code from bg2bhc/gr-lilacsat
{
"ZmqAddr": "tcp://127.0.0.1:5555",
"WsAddr": "ws://127.0.0.1:8080/",
"SatName": "ASRTU-1",
"ProxyNickname": "N0CALL",
"PhysicalChannel": 0,
"ProxyLong": 123.45,
"ProxyLat": 67.89,
"ProxyAlt": 0
}| key | description |
|---|---|
| ZmqAddr | ZMQ address (from grc or soundmodem) |
| WsAddr | websocket address ( [ws/wss]://[ip]:[port] ) |
| SatName | satellite name |
| ProxyNickname | your callsign or name |
| PhysicalChannel | downlink channel |
| ProxyLong | station longitude |
| ProxyLat | station latitude |
| ProxyAlt | station altitude |
./proxy_mmt_goload config.json by default, if you need to upload with another config, just run:
./proxy_mmt_go -c path_to_another.jsonneed libraries
go get -u github.com/pebbe/zmq4
go get -u github.com/gorilla/websocketthen build
go buildpebbe/zmq4 on Windows, see here.
MIT