├── .gitattributes ├── .gitignore ├── Adafruit_MQTT_Library-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Adafruit_MQTT.cpp ├── Adafruit_MQTT.h ├── Adafruit_MQTT_Client.cpp ├── Adafruit_MQTT_Client.h ├── Adafruit_MQTT_FONA.h ├── LICENSE ├── README.md ├── examples │ ├── adafruitio_anon_time_esp8266 │ │ └── adafruitio_anon_time_esp8266.ino │ ├── adafruitio_errors_esp8266 │ │ └── adafruitio_errors_esp8266.ino │ ├── adafruitio_secure_esp8266 │ │ └── adafruitio_secure_esp8266.ino │ ├── adafruitio_time_esp8266 │ │ └── adafruitio_time_esp8266.ino │ ├── mqtt_2subs_esp8266 │ │ ├── .due.test.skip │ │ ├── .leonardo.test.skip │ │ ├── .uno.test.skip │ │ ├── .zero.test.skip │ │ └── mqtt_2subs_esp8266.ino │ ├── mqtt_arbitrary_data │ │ ├── .due.test.skip │ │ ├── .leonardo.test.skip │ │ ├── .uno.test.skip │ │ ├── .zero.test.skip │ │ ├── README.md │ │ ├── mqtt_arbitrary_data.ino │ │ └── python_subscriber │ │ │ ├── mqtt_figure.png │ │ │ ├── requirements.txt │ │ │ └── subscriber.py │ ├── mqtt_esp8266 │ │ ├── .due.test.skip │ │ ├── .leonardo.test.skip │ │ ├── .uno.test.skip │ │ ├── .zero.test.skip │ │ └── mqtt_esp8266.ino │ ├── mqtt_esp8266_callback │ │ └── mqtt_esp8266_callback.ino │ ├── mqtt_ethernet │ │ ├── .due.test.skip │ │ ├── .esp8266.test.skip │ │ └── mqtt_ethernet.ino │ ├── mqtt_fona │ │ ├── .due.test.skip │ │ ├── .esp8266.test.skip │ │ ├── fonahelper.cpp │ │ └── mqtt_fona.ino │ ├── mqtt_winc1500 │ │ └── mqtt_winc1500.ino │ └── mqtt_yun │ │ ├── .due.test.skip │ │ ├── .leonardo.test.skip │ │ ├── .uno.test.skip │ │ ├── .zero.test.skip │ │ └── mqtt_yun.ino ├── keywords.txt └── library.properties ├── DHT-sensor-library-master ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── DHT.cpp ├── DHT.h ├── DHT_U.cpp ├── DHT_U.h ├── README.md ├── examples │ ├── DHT_Unified_Sensor │ │ └── DHT_Unified_Sensor.ino │ └── DHTtester │ │ └── DHTtester.ino ├── keywords.txt └── library.properties └── Local_Home_Automation.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/.gitignore -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bts* 3 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/.travis.yml -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/Adafruit_MQTT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/Adafruit_MQTT.cpp -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/Adafruit_MQTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/Adafruit_MQTT.h -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/Adafruit_MQTT_Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/Adafruit_MQTT_Client.cpp -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/Adafruit_MQTT_Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/Adafruit_MQTT_Client.h -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/Adafruit_MQTT_FONA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/Adafruit_MQTT_FONA.h -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/LICENSE -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/README.md -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/adafruitio_anon_time_esp8266/adafruitio_anon_time_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/adafruitio_anon_time_esp8266/adafruitio_anon_time_esp8266.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/adafruitio_errors_esp8266/adafruitio_errors_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/adafruitio_errors_esp8266/adafruitio_errors_esp8266.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/adafruitio_secure_esp8266/adafruitio_secure_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/adafruitio_secure_esp8266/adafruitio_secure_esp8266.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/adafruitio_time_esp8266/adafruitio_time_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/adafruitio_time_esp8266/adafruitio_time_esp8266.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_2subs_esp8266/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_2subs_esp8266/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_2subs_esp8266/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_2subs_esp8266/.zero.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_2subs_esp8266/mqtt_2subs_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_2subs_esp8266/mqtt_2subs_esp8266.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/.zero.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/README.md -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/mqtt_arbitrary_data.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/mqtt_arbitrary_data.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/python_subscriber/mqtt_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/python_subscriber/mqtt_figure.png -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/python_subscriber/requirements.txt: -------------------------------------------------------------------------------- 1 | paho-mqtt>=1.1 2 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/python_subscriber/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_arbitrary_data/python_subscriber/subscriber.py -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_esp8266/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_esp8266/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_esp8266/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_esp8266/.zero.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_esp8266/mqtt_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_esp8266/mqtt_esp8266.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_esp8266_callback/mqtt_esp8266_callback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_esp8266_callback/mqtt_esp8266_callback.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_ethernet/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_ethernet/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_ethernet/mqtt_ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_ethernet/mqtt_ethernet.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_fona/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_fona/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_fona/fonahelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_fona/fonahelper.cpp -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_fona/mqtt_fona.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_fona/mqtt_fona.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_winc1500/mqtt_winc1500.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_winc1500/mqtt_winc1500.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_yun/.due.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_yun/.leonardo.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_yun/.uno.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_yun/.zero.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/examples/mqtt_yun/mqtt_yun.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/examples/mqtt_yun/mqtt_yun.ino -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/keywords.txt -------------------------------------------------------------------------------- /Adafruit_MQTT_Library-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Adafruit_MQTT_Library-master/library.properties -------------------------------------------------------------------------------- /DHT-sensor-library-master/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /DHT-sensor-library-master/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/DHT.cpp -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/DHT.h -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT_U.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/DHT_U.cpp -------------------------------------------------------------------------------- /DHT-sensor-library-master/DHT_U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/DHT_U.h -------------------------------------------------------------------------------- /DHT-sensor-library-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/README.md -------------------------------------------------------------------------------- /DHT-sensor-library-master/examples/DHT_Unified_Sensor/DHT_Unified_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/examples/DHT_Unified_Sensor/DHT_Unified_Sensor.ino -------------------------------------------------------------------------------- /DHT-sensor-library-master/examples/DHTtester/DHTtester.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/examples/DHTtester/DHTtester.ino -------------------------------------------------------------------------------- /DHT-sensor-library-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/keywords.txt -------------------------------------------------------------------------------- /DHT-sensor-library-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/DHT-sensor-library-master/library.properties -------------------------------------------------------------------------------- /Local_Home_Automation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiesms/Home-Automation-based-on-Local-MQTT-server-using-Raspberry-Pi-and-Nodemcu-Board/HEAD/Local_Home_Automation.ino --------------------------------------------------------------------------------