Merge branch 'main' of https://code.curious.bio/curious.bio/iot-platform
This commit is contained in:
commit
ca6a34d1f4
13
README.md
13
README.md
|
@ -3,8 +3,9 @@
|
|||
## Docker
|
||||
|
||||
First install DockerDesktop and `docker-compose`:
|
||||
* https://www.docker.com/products/docker-desktop/
|
||||
* https://docs.docker.com/compose/install/
|
||||
|
||||
- https://www.docker.com/products/docker-desktop/
|
||||
- https://docs.docker.com/compose/install/
|
||||
|
||||
Then you can export a path to mount as a volume and spin up the containers:
|
||||
|
||||
|
@ -13,6 +14,13 @@ export DATA_DIR = /some/path/to/mount
|
|||
docker-compose --file software/container/docker-compose.yml up
|
||||
```
|
||||
|
||||
### Mosquitto
|
||||
|
||||
```sh
|
||||
mosquitto_sub -h localhost -t '#' -p 1883
|
||||
mosquitto_pub -h localhost -p 1883 -t '/' -m $(date --utc +%s)
|
||||
```
|
||||
|
||||
### Grafana
|
||||
|
||||
You can login to Grafana: http://localhost:3000/login (admin:admin)
|
||||
|
@ -27,7 +35,6 @@ NodeRed is running here: http://localhost:1880/
|
|||
|
||||
We are using HelTec Automation Wirelsess Sticks ESP32 Dev-Boards. Their GitHub repo can be found here: https://github.com/HelTecAutomation/Heltec_ESP32
|
||||
|
||||
|
||||
I had to install VCP Drivers, first: https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers?tab=downloads
|
||||
|
||||
You can add their Board Manager to the boards managers URLs: https://github.com/HelTecAutomation/Heltec_ESP32/blob/master/library.json and find their libraries in the IDE (Sketch -> Include Library -> Manage Libraries... Search for "heltec esp32").
|
||||
|
|
Loading…
Reference in a new issue