smart-energy-monitor/README.md

45 lines
1.1 KiB
Markdown
Raw Normal View History

2023-02-07 16:55:21 +01:00
# IoT Platform
## Docker
First install DockerDesktop and `docker-compose`:
2023-02-15 09:50:11 +01:00
- 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:
2023-02-07 16:55:21 +01:00
```sh
export DATA_DIR = /some/path/to/mount
2023-02-07 16:55:21 +01:00
docker-compose --file software/container/docker-compose.yml up
```
2023-02-15 09:50:11 +01:00
### 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)
2023-02-23 17:34:43 +01:00
Have a look at the [HowTo in this repository](./software/dashboard/README.md).
2023-02-22 16:18:17 +01:00
### Node-RED
NodeRed is running here: http://localhost:1880/
2023-02-22 17:49:44 +01:00
A simple introduction to Node-RED can be found - along with the nodes / the code - in [this repository, please have a look](./software/flow/README.md)!
2023-02-22 16:18:17 +01:00
## Hardware
We are using HelTec Automation Wirelsess Sticks ESP32 Dev-Boards.
2023-02-23 17:46:16 +01:00
See the [documentation in this repository](./hardware/README.md).
2023-02-13 18:45:43 +01:00
2023-02-18 17:22:40 +01:00
## Hardware sensors
2023-02-20 18:22:27 +01:00
* [Energy Monitor](./software/firmware/energy-monitor/README.md)
2023-02-23 16:50:38 +01:00
* [Shelly Example](./software/firmware/shelly-monitor/README.md)