This is the web app served up by the ESP8266 for Disaster Radio + the simulator web server.
npm install
cp settings.js.example settings.js
The first time you build you need to do:
npm run build-css
npm run build # build the js and css
npm start # run the simulator server
Then in a browser open http://localhost:8000/
npm run dev # starts simulator server and auto-builder
The disaster.radio firmware opens up a websocket using the ESPAsyncWebServer library. Through this, client-side javascript can transmit and receive messages over the LoRa tranceiver. If you'd like to build an application for disaster.radio, you could write a websocket client that sends and receives messages in the same format. Currently, the firmware expects websocket messages in the following format,
<msgID><msgType>|<msg>
where,
<msgID>
is a two-byte binary unsigned integer representing an abitrary sequence number, this is sent back to the websocket client with an!
appended to act as an acknowledgment and could be used for error-checking,<msgType>
is a single binary utf8 encoded character representing the application for which the message is intended, such 'c' for chat, 'm' for maps, or 'e' for events<msg>
is a binary utf8 encoded string of characters limited to 236 bytes, this can be treated as the body of the message and may be used to handle client-side concerns, such as intended recipient or requested map tile.
An example messge may appear as follows,
0100c|<noffle>@juul did you feel that earthquake!
Alternatively, you could write another Layer3 client for as part of the disater radio firmware and create you own Layer 4 message format. See more about our networkng stack on our wiki, https://github.com/sudomesh/disaster-radio/wiki/Layered-Model.
Follow instruction in main README.md to upload built web app.