├── .gitignore ├── LICENSE ├── README.md ├── accept-sample.yml ├── accept-sample ├── __init__.py ├── handler.py └── requirements.txt ├── dashboard.json ├── docker-compose.yml ├── images └── sensor-dashboard.png ├── influx_db_creds.env └── mqtt-broker ├── README.md └── app.py /.gitignore: -------------------------------------------------------------------------------- 1 | template 2 | build 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/README.md -------------------------------------------------------------------------------- /accept-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/accept-sample.yml -------------------------------------------------------------------------------- /accept-sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accept-sample/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/accept-sample/handler.py -------------------------------------------------------------------------------- /accept-sample/requirements.txt: -------------------------------------------------------------------------------- 1 | influxdb 2 | -------------------------------------------------------------------------------- /dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/dashboard.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/sensor-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/images/sensor-dashboard.png -------------------------------------------------------------------------------- /influx_db_creds.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/influx_db_creds.env -------------------------------------------------------------------------------- /mqtt-broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/mqtt-broker/README.md -------------------------------------------------------------------------------- /mqtt-broker/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/iot-sensors-mqtt-openfaas/HEAD/mqtt-broker/app.py --------------------------------------------------------------------------------