├── .gitignore ├── README.md ├── arduino ├── esp32.ino └── nodemcu.ino ├── client.py ├── docker-compose.yml ├── img ├── alert.png └── dashboard.png ├── requirements.txt └── www ├── __init__.py └── app.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/README.md -------------------------------------------------------------------------------- /arduino/esp32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/arduino/esp32.ino -------------------------------------------------------------------------------- /arduino/nodemcu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/arduino/nodemcu.ino -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/client.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/img/alert.png -------------------------------------------------------------------------------- /img/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/img/dashboard.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/requirements.txt -------------------------------------------------------------------------------- /www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalo123/iot.grafana/HEAD/www/app.py --------------------------------------------------------------------------------