Core Component, handles delivery, acknowledgements and more
Find a file
2021-03-29 22:12:31 +00:00
types storing metadata now too 2021-03-29 22:12:31 +00:00
.gitignore gitignore 2021-03-20 03:58:31 +00:00
config.json rx dummychain works 2021-03-29 20:25:21 +00:00
index.js added Device Data Collection and Ack Handling 2021-03-29 21:47:15 +00:00
package.json rx dummychain works 2021-03-29 20:25:21 +00:00
README.md Update README.md 2021-03-29 22:27:36 +02:00

dispatcher-daemon

Workflow

Features Working rn:

  • Duplex and Simplex Processing

Features in W.I.P:

  • LoRaWAN progress 70%
  • POCSAG only TX , no RX path
  • Still 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:

  • DAPNET integration
  • WebSocket Live Routing Status

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.)

| 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"
}