├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── SparnasMqtt.png ├── SparsnasHass.png ├── include ├── RFM69functions.h ├── RFM69registers.h ├── mqttpub.h ├── ntp.h ├── reconn.h └── settings.example.h ├── lib └── README ├── platformio.ini ├── refrence_doc ├── RFM69HCW_NodeMCU.png └── RFM69HC_D1mini.png ├── src ├── EspSparsnasGateway.cpp ├── RFM69functions.cpp ├── mqttpub.cpp ├── ntp.cpp └── reconn.cpp ├── test └── README └── todo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/README.md -------------------------------------------------------------------------------- /SparnasMqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/SparnasMqtt.png -------------------------------------------------------------------------------- /SparsnasHass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/SparsnasHass.png -------------------------------------------------------------------------------- /include/RFM69functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/include/RFM69functions.h -------------------------------------------------------------------------------- /include/RFM69registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/include/RFM69registers.h -------------------------------------------------------------------------------- /include/mqttpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/include/mqttpub.h -------------------------------------------------------------------------------- /include/ntp.h: -------------------------------------------------------------------------------- 1 | void setup_NTP(); 2 | -------------------------------------------------------------------------------- /include/reconn.h: -------------------------------------------------------------------------------- 1 | void reconnect(); 2 | -------------------------------------------------------------------------------- /include/settings.example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/include/settings.example.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/platformio.ini -------------------------------------------------------------------------------- /refrence_doc/RFM69HCW_NodeMCU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/refrence_doc/RFM69HCW_NodeMCU.png -------------------------------------------------------------------------------- /refrence_doc/RFM69HC_D1mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/refrence_doc/RFM69HC_D1mini.png -------------------------------------------------------------------------------- /src/EspSparsnasGateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/src/EspSparsnasGateway.cpp -------------------------------------------------------------------------------- /src/RFM69functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/src/RFM69functions.cpp -------------------------------------------------------------------------------- /src/mqttpub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/src/mqttpub.cpp -------------------------------------------------------------------------------- /src/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/src/ntp.cpp -------------------------------------------------------------------------------- /src/reconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/src/reconn.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bphermansson/EspSparsnasGateway/HEAD/test/README -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------