├── .gitattributes ├── .gitignore ├── README.md ├── firmware ├── DHT.cpp ├── DHT.h ├── SFE_TSL2561.cpp ├── SFE_TSL2561.h └── homekit-demo.ino ├── homebridge ├── Particle.js └── config.json └── images ├── app1.PNG ├── app2.PNG ├── app3.PNG └── wiring.JPG /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/README.md -------------------------------------------------------------------------------- /firmware/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/firmware/DHT.cpp -------------------------------------------------------------------------------- /firmware/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/firmware/DHT.h -------------------------------------------------------------------------------- /firmware/SFE_TSL2561.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/firmware/SFE_TSL2561.cpp -------------------------------------------------------------------------------- /firmware/SFE_TSL2561.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/firmware/SFE_TSL2561.h -------------------------------------------------------------------------------- /firmware/homekit-demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/firmware/homekit-demo.ino -------------------------------------------------------------------------------- /homebridge/Particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/homebridge/Particle.js -------------------------------------------------------------------------------- /homebridge/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/homebridge/config.json -------------------------------------------------------------------------------- /images/app1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/images/app1.PNG -------------------------------------------------------------------------------- /images/app2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/images/app2.PNG -------------------------------------------------------------------------------- /images/app3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/images/app3.PNG -------------------------------------------------------------------------------- /images/wiring.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krvarma/HomeKit-and-Particle-Photon/HEAD/images/wiring.JPG --------------------------------------------------------------------------------