├── .gitignore ├── README.md ├── ch5 ├── 3d │ └── Smart Pet Food Dispenser.stl └── arduino │ ├── ch5_01_servo_serial │ └── ch5_01_servo_serial.ino │ ├── ch5_02_servo_serial_auto_close │ └── ch5_02_servo_serial_auto_close.ino │ ├── ch5_03_servo_mqtt │ └── ch5_03_servo_mqtt.ino │ └── ch5_extra_01_find_servo_positions │ └── ch5_extra_01_find_servo_positions.ino ├── ch6 ├── 3d │ └── Waveshare 4.2 inch e-paper module case_V2.stl └── arduino │ ├── ch6_01_example_reduced │ └── ch6_01_example_reduced.ino │ ├── ch6_02_serial │ └── ch6_02_serial.ino │ └── ch6_03_mqtt │ └── ch6_03_mqtt.ino ├── ch7 ├── 3d │ ├── Cube_Body.stl │ ├── Cube_Cable_Holder.stl │ ├── Cube_Cable_Holder_Clip.stl │ ├── Cube_Lid.stl │ └── Cube_Stand.stl └── arduino │ ├── ch7_01_single_switch │ └── ch7_01_single_switch.ino │ ├── ch7_02_four_switches │ └── ch7_02_four_switches.ino │ ├── ch7_03 │ └── ch7_03.ino │ └── ch7_04 │ └── ch7_04.ino ├── ch8 └── arduino │ └── ch8_01_mqtt │ └── ch8_01_mqtt.ino ├── general └── arduino │ ├── mqtt_shiftr_send_receive_example │ └── mqtt_shiftr_send_receive_example.ino │ └── serial_string_echo │ └── serial_string_echo.ino └── shopping_list.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/README.md -------------------------------------------------------------------------------- /ch5/3d/Smart Pet Food Dispenser.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch5/3d/Smart Pet Food Dispenser.stl -------------------------------------------------------------------------------- /ch5/arduino/ch5_01_servo_serial/ch5_01_servo_serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch5/arduino/ch5_01_servo_serial/ch5_01_servo_serial.ino -------------------------------------------------------------------------------- /ch5/arduino/ch5_02_servo_serial_auto_close/ch5_02_servo_serial_auto_close.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch5/arduino/ch5_02_servo_serial_auto_close/ch5_02_servo_serial_auto_close.ino -------------------------------------------------------------------------------- /ch5/arduino/ch5_03_servo_mqtt/ch5_03_servo_mqtt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch5/arduino/ch5_03_servo_mqtt/ch5_03_servo_mqtt.ino -------------------------------------------------------------------------------- /ch5/arduino/ch5_extra_01_find_servo_positions/ch5_extra_01_find_servo_positions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch5/arduino/ch5_extra_01_find_servo_positions/ch5_extra_01_find_servo_positions.ino -------------------------------------------------------------------------------- /ch6/3d/Waveshare 4.2 inch e-paper module case_V2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch6/3d/Waveshare 4.2 inch e-paper module case_V2.stl -------------------------------------------------------------------------------- /ch6/arduino/ch6_01_example_reduced/ch6_01_example_reduced.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch6/arduino/ch6_01_example_reduced/ch6_01_example_reduced.ino -------------------------------------------------------------------------------- /ch6/arduino/ch6_02_serial/ch6_02_serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch6/arduino/ch6_02_serial/ch6_02_serial.ino -------------------------------------------------------------------------------- /ch6/arduino/ch6_03_mqtt/ch6_03_mqtt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch6/arduino/ch6_03_mqtt/ch6_03_mqtt.ino -------------------------------------------------------------------------------- /ch7/3d/Cube_Body.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/3d/Cube_Body.stl -------------------------------------------------------------------------------- /ch7/3d/Cube_Cable_Holder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/3d/Cube_Cable_Holder.stl -------------------------------------------------------------------------------- /ch7/3d/Cube_Cable_Holder_Clip.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/3d/Cube_Cable_Holder_Clip.stl -------------------------------------------------------------------------------- /ch7/3d/Cube_Lid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/3d/Cube_Lid.stl -------------------------------------------------------------------------------- /ch7/3d/Cube_Stand.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/3d/Cube_Stand.stl -------------------------------------------------------------------------------- /ch7/arduino/ch7_01_single_switch/ch7_01_single_switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/arduino/ch7_01_single_switch/ch7_01_single_switch.ino -------------------------------------------------------------------------------- /ch7/arduino/ch7_02_four_switches/ch7_02_four_switches.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/arduino/ch7_02_four_switches/ch7_02_four_switches.ino -------------------------------------------------------------------------------- /ch7/arduino/ch7_03/ch7_03.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/arduino/ch7_03/ch7_03.ino -------------------------------------------------------------------------------- /ch7/arduino/ch7_04/ch7_04.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch7/arduino/ch7_04/ch7_04.ino -------------------------------------------------------------------------------- /ch8/arduino/ch8_01_mqtt/ch8_01_mqtt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/ch8/arduino/ch8_01_mqtt/ch8_01_mqtt.ino -------------------------------------------------------------------------------- /general/arduino/mqtt_shiftr_send_receive_example/mqtt_shiftr_send_receive_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/general/arduino/mqtt_shiftr_send_receive_example/mqtt_shiftr_send_receive_example.ino -------------------------------------------------------------------------------- /general/arduino/serial_string_echo/serial_string_echo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/general/arduino/serial_string_echo/serial_string_echo.ino -------------------------------------------------------------------------------- /shopping_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Internet-of-Things-with-MQTT/HEAD/shopping_list.md --------------------------------------------------------------------------------