├── Gateway └── Gateway.ino ├── README.md ├── SensorNode └── SensorNode.ino ├── SimpleMonitorNode ├── SimpleMonitorNode.ino └── readme.md └── piGateway ├── Gateway.c ├── GatewaydService ├── Makefile ├── SenderReceiver.c ├── networkconfig.h ├── readme.md ├── rfm69.cpp ├── rfm69.h └── rfm69registers.h /Gateway/Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/Gateway/Gateway.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/README.md -------------------------------------------------------------------------------- /SensorNode/SensorNode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/SensorNode/SensorNode.ino -------------------------------------------------------------------------------- /SimpleMonitorNode/SimpleMonitorNode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/SimpleMonitorNode/SimpleMonitorNode.ino -------------------------------------------------------------------------------- /SimpleMonitorNode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/SimpleMonitorNode/readme.md -------------------------------------------------------------------------------- /piGateway/Gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/Gateway.c -------------------------------------------------------------------------------- /piGateway/GatewaydService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/GatewaydService -------------------------------------------------------------------------------- /piGateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/Makefile -------------------------------------------------------------------------------- /piGateway/SenderReceiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/SenderReceiver.c -------------------------------------------------------------------------------- /piGateway/networkconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/networkconfig.h -------------------------------------------------------------------------------- /piGateway/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/readme.md -------------------------------------------------------------------------------- /piGateway/rfm69.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/rfm69.cpp -------------------------------------------------------------------------------- /piGateway/rfm69.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/rfm69.h -------------------------------------------------------------------------------- /piGateway/rfm69registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abouillot/HomeAutomation/HEAD/piGateway/rfm69registers.h --------------------------------------------------------------------------------