├── .gitattributes ├── .gitignore ├── Diagram.JPG ├── Node-Red Flow.txt ├── README.md └── RFLinkV1 ├── RFLinkV1.ino └── credentials.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/RFLink-MQTT-Gateway/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | RFLinkV1/credentials.h 3 | -------------------------------------------------------------------------------- /Diagram.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/RFLink-MQTT-Gateway/HEAD/Diagram.JPG -------------------------------------------------------------------------------- /Node-Red Flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/RFLink-MQTT-Gateway/HEAD/Node-Red Flow.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RFLink MQTT Gateway 2 | 3 | Please watch YouTube video https://youtu.be/oYfbEyzT-Gs for details 4 | -------------------------------------------------------------------------------- /RFLinkV1/RFLinkV1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/RFLink-MQTT-Gateway/HEAD/RFLinkV1/RFLinkV1.ino -------------------------------------------------------------------------------- /RFLinkV1/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/RFLink-MQTT-Gateway/HEAD/RFLinkV1/credentials.h --------------------------------------------------------------------------------