You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cheetah c950dba5a5 | 4 years ago | |
---|---|---|
boskrypt | 4 years ago | |
examples/bash | 4 years ago | |
html | 4 years ago | |
html_main | 4 years ago | |
types | 4 years ago | |
.gitignore | 4 years ago | |
README.md | 4 years ago | |
config.json | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago |
README.md
dispatcher-daemon
Features Working rn:
- Duplex and Simplex Processing
- DAPNET integration
- Configuration WebInterface (:3001)
- API Test WebInterface (:3000)
Features in W.I.P:
- LoRaWAN progress 70%
POCSAG only TX , no RX pathStill missing a RX path and processing (Message gets passed along every Device Class, which then tries to parse it, if successfull it breaks the processing loop and the Device Class handles decoding+status handling for delivery)
Planned:
- WebSocket Live Routing Status
- more DeviceStats (when LoRaWAN, store Distance to nearest/latest LoRaWAN Gateway of TTN)
API Server running on Port 3000
API Calls:
| GET /api/message/ack/recv/<id>
- marks a Message as Delivered
| GET /api/message/status/<id>
- fetches the current Message Data(DeliveryLog, Payload, etc.)
| GET /api/device/:
- Lists all Device IDs
| GET /api/device/<DeviceType>:<ID>
- Returns the Device State.
Example:
/api/device/birdyslim:test333
{
"lastSeen": "2021-03-30T10:01:24.988Z",
"rssi": 34,
"lastLoRaPacket": {
"end_device_ids": {
"device_id": "test333",
"application_ids": {
"application_id": "birdy-slim-iot"
}
},
"correlation_ids": [ ... ],
"received_at": "2021-03-30T10:01:24.988088037Z",
"uplink_message": {
"f_port": 5,
"frm_payload": "AB4z1wBKLDEQ",
"decoded_payload": {
"lastGPSAcquisition": 16,
"latitude": 19.79351,
"longitude": 48.60977,
"type": "gps"
},
"settings": {
"data_rate": {}
},
"received_at": "0001-01-01T00:00:00Z"
},
"simulated": true
},
"gps": {
"gps": {
"lastGPSAcquisition": 16,
"latitude": 19.79351,
"longitude": 48.60977
}
}
}
| POST /api/message/advanced
- Creates a new Message and starts delivering it, returns the Message ID. HTTP Body is a JSON Object. for example:
{
"type": "duplex",
"routing": {
"device": "birdyslim",
"connectors": [
[ "dummy", "fail" ],
[ "pocsag", "133701D" ],
[ "dummy", "works" ]
]
},
"payload": "Testbericht"
}