├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc ├── assets │ ├── SMLReader_Img_D1.jpg │ ├── SMLReader_Img_ReadingHead.jpg │ ├── SMLReader_Img_ReadingHead_Close.jpg │ └── SMLReader_Schema.png ├── samples │ └── influxdb_grafana │ │ ├── .env │ │ ├── docker-compose.yaml │ │ └── telegraf │ │ └── telegraf.conf ├── screenshots │ ├── screenshot_grafana.png │ ├── screenshot_mqtt.png │ ├── screenshot_platformio_build.png │ ├── screenshot_platformio_upload.png │ ├── screenshot_platformio_upload_and_monitor.png │ └── screenshot_setup.png └── src │ └── SMLReader.fzz ├── include └── README ├── lib └── README ├── platformio.ini ├── src ├── MqttPublisher.h ├── Sensor.h ├── config.h ├── debug.h ├── main.cpp └── unit.h └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/README.md -------------------------------------------------------------------------------- /doc/assets/SMLReader_Img_D1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/assets/SMLReader_Img_D1.jpg -------------------------------------------------------------------------------- /doc/assets/SMLReader_Img_ReadingHead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/assets/SMLReader_Img_ReadingHead.jpg -------------------------------------------------------------------------------- /doc/assets/SMLReader_Img_ReadingHead_Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/assets/SMLReader_Img_ReadingHead_Close.jpg -------------------------------------------------------------------------------- /doc/assets/SMLReader_Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/assets/SMLReader_Schema.png -------------------------------------------------------------------------------- /doc/samples/influxdb_grafana/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/samples/influxdb_grafana/.env -------------------------------------------------------------------------------- /doc/samples/influxdb_grafana/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/samples/influxdb_grafana/docker-compose.yaml -------------------------------------------------------------------------------- /doc/samples/influxdb_grafana/telegraf/telegraf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/samples/influxdb_grafana/telegraf/telegraf.conf -------------------------------------------------------------------------------- /doc/screenshots/screenshot_grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/screenshots/screenshot_grafana.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/screenshots/screenshot_mqtt.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_platformio_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/screenshots/screenshot_platformio_build.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_platformio_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/screenshots/screenshot_platformio_upload.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_platformio_upload_and_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/screenshots/screenshot_platformio_upload_and_monitor.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/screenshots/screenshot_setup.png -------------------------------------------------------------------------------- /doc/src/SMLReader.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/doc/src/SMLReader.fzz -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/MqttPublisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/src/MqttPublisher.h -------------------------------------------------------------------------------- /src/Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/src/Sensor.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/src/config.h -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/src/unit.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mruettgers/SMLReader/HEAD/test/README --------------------------------------------------------------------------------