├── .gitignore ├── LICENSE ├── Makefile ├── OpenThings.h ├── README.md ├── cJSON.c ├── cJSON.h ├── debug ├── decoder.c ├── decoder.h ├── dev_HRF.c ├── dev_HRF.h ├── docker ├── Dockerfile ├── README.md ├── energenie-mqtt.service └── mosquitto_config │ └── mosquitto.conf ├── engMQTTClient.c ├── engMQTTClient.h ├── log4crc ├── openhab_systemd_services ├── EnergenieMQTT.service └── openhab2.service └── run /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/Makefile -------------------------------------------------------------------------------- /OpenThings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/OpenThings.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/README.md -------------------------------------------------------------------------------- /cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/cJSON.c -------------------------------------------------------------------------------- /cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/cJSON.h -------------------------------------------------------------------------------- /debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/debug -------------------------------------------------------------------------------- /decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/decoder.c -------------------------------------------------------------------------------- /decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/decoder.h -------------------------------------------------------------------------------- /dev_HRF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/dev_HRF.c -------------------------------------------------------------------------------- /dev_HRF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/dev_HRF.h -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/energenie-mqtt.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/docker/energenie-mqtt.service -------------------------------------------------------------------------------- /docker/mosquitto_config/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/docker/mosquitto_config/mosquitto.conf -------------------------------------------------------------------------------- /engMQTTClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/engMQTTClient.c -------------------------------------------------------------------------------- /engMQTTClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/engMQTTClient.h -------------------------------------------------------------------------------- /log4crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/log4crc -------------------------------------------------------------------------------- /openhab_systemd_services/EnergenieMQTT.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/openhab_systemd_services/EnergenieMQTT.service -------------------------------------------------------------------------------- /openhab_systemd_services/openhab2.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpbenton/engMQTTClient/HEAD/openhab_systemd_services/openhab2.service -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- 1 | sudo LD_LIBRARY_PATH=/usr/local/lib ./engMQTTClient 2 | 3 | --------------------------------------------------------------------------------