├── .gitignore ├── .nojekyll ├── 30-iot.md ├── LICENSE ├── Makefile ├── README.md ├── chapters ├── 00-prelude.md ├── 01-basic.md ├── 1-0-arduino-basic.md ├── 1-1-arduino-hello-world.md ├── 1-2-arduino-sensor.md ├── 1-3-arduino-5110.md ├── 1-4-arduino-processing.md ├── 1-5-arduino-ble.md ├── 1-6-arduino-shield.md ├── 1-7-arduino-network.md ├── 2-0-esp8266-baisc.md ├── 2-1-esp8266-basic.md ├── 2-2-esp8266-arduino-ide.md ├── 2-3-esp8266-arduino-uno.md ├── 2-4-esp8266-sensor-to-server.md ├── 2-5-esp8266-mqtt.md ├── 2-6-esp8266-http-server.md ├── 2-7-beyond-esp8266.md ├── 3-0-rpi.md ├── 3-1-rpi-hello-world.md ├── 3-2-rpi-node-server-basic.md ├── 3-3-rpi-camera-server.md ├── 3-4-esp8266-server-connect.md ├── 3-5-arduino-ota.md ├── 3-6-rpi-mqtt-server.md ├── 3-7-rpi-iot-docker.md ├── 4-0-basic.md ├── 4-1-ha-setup.md ├── 4-2-ha-esp8266.md ├── 4-3-homekit-setup.md ├── 4-4-homekit-esp8266.md ├── 4-5-rpi-avs.md ├── 4-6-rpi-respeaker.md └── 4-7-rpi-ai-blockchain.md ├── css └── vendor.css ├── epub.css ├── images └── arduino │ ├── add-zip-library.png │ ├── arduino-5110-connection.png │ ├── arduino-button.jpg │ ├── arduino-ethernet.png │ ├── arduino-hs-sr04.png │ ├── arduino-install-package.png │ ├── arduino-nokia-5110.png │ ├── arduinos.jpg │ ├── download-zip.png │ ├── fritzing-button.png │ ├── fritzing-example.jpg │ ├── manage-library.png │ ├── serial-output-example.png │ └── shields.jpg ├── img ├── cover.jpg └── favicon.ico ├── index.html ├── init.sh ├── listings-setup.tex ├── style.css └── template └── template.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /30-iot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/30-iot.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/README.md -------------------------------------------------------------------------------- /chapters/00-prelude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/00-prelude.md -------------------------------------------------------------------------------- /chapters/01-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/01-basic.md -------------------------------------------------------------------------------- /chapters/1-0-arduino-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-0-arduino-basic.md -------------------------------------------------------------------------------- /chapters/1-1-arduino-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-1-arduino-hello-world.md -------------------------------------------------------------------------------- /chapters/1-2-arduino-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-2-arduino-sensor.md -------------------------------------------------------------------------------- /chapters/1-3-arduino-5110.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-3-arduino-5110.md -------------------------------------------------------------------------------- /chapters/1-4-arduino-processing.md: -------------------------------------------------------------------------------- 1 | Arduino Processing 2 | === 3 | 4 | 串口输出 5 | --- 6 | 7 | 8 | 复杂的例子:MPU 6050 9 | --- 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /chapters/1-5-arduino-ble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-5-arduino-ble.md -------------------------------------------------------------------------------- /chapters/1-6-arduino-shield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-6-arduino-shield.md -------------------------------------------------------------------------------- /chapters/1-7-arduino-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/1-7-arduino-network.md -------------------------------------------------------------------------------- /chapters/2-0-esp8266-baisc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/2-0-esp8266-baisc.md -------------------------------------------------------------------------------- /chapters/2-1-esp8266-basic.md: -------------------------------------------------------------------------------- 1 | ESP8266 基础 2 | === 3 | 4 | 设置与 AT 指令 5 | --- 6 | 7 | 8 | NodeMCU 9 | --- 10 | 11 | -------------------------------------------------------------------------------- /chapters/2-2-esp8266-arduino-ide.md: -------------------------------------------------------------------------------- 1 | ESP8266 Arduino IDE 展示 2 | === 3 | -------------------------------------------------------------------------------- /chapters/2-3-esp8266-arduino-uno.md: -------------------------------------------------------------------------------- 1 | ESP8266 连接 Arduino UNO 2 | === 3 | 4 | -------------------------------------------------------------------------------- /chapters/2-4-esp8266-sensor-to-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/2-4-esp8266-sensor-to-server.md -------------------------------------------------------------------------------- /chapters/2-5-esp8266-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/2-5-esp8266-mqtt.md -------------------------------------------------------------------------------- /chapters/2-6-esp8266-http-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/2-6-esp8266-http-server.md -------------------------------------------------------------------------------- /chapters/2-7-beyond-esp8266.md: -------------------------------------------------------------------------------- 1 | 超越 ESP8266 2 | === 3 | -------------------------------------------------------------------------------- /chapters/3-0-rpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-0-rpi.md -------------------------------------------------------------------------------- /chapters/3-1-rpi-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-1-rpi-hello-world.md -------------------------------------------------------------------------------- /chapters/3-2-rpi-node-server-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-2-rpi-node-server-basic.md -------------------------------------------------------------------------------- /chapters/3-3-rpi-camera-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-3-rpi-camera-server.md -------------------------------------------------------------------------------- /chapters/3-4-esp8266-server-connect.md: -------------------------------------------------------------------------------- 1 | 与 ESP8266 无线通讯 2 | === 3 | 4 | ### 建立服务 5 | 6 | ### 广播? -------------------------------------------------------------------------------- /chapters/3-5-arduino-ota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-5-arduino-ota.md -------------------------------------------------------------------------------- /chapters/3-6-rpi-mqtt-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-6-rpi-mqtt-server.md -------------------------------------------------------------------------------- /chapters/3-7-rpi-iot-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/chapters/3-7-rpi-iot-docker.md -------------------------------------------------------------------------------- /chapters/4-0-basic.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapters/4-1-ha-setup.md: -------------------------------------------------------------------------------- 1 | Home Assistant 搭建 2 | === 3 | -------------------------------------------------------------------------------- /chapters/4-2-ha-esp8266.md: -------------------------------------------------------------------------------- 1 | Home Assistant 整合 2 | === 3 | -------------------------------------------------------------------------------- /chapters/4-3-homekit-setup.md: -------------------------------------------------------------------------------- 1 | Homekit 搭建 2 | === 3 | -------------------------------------------------------------------------------- /chapters/4-4-homekit-esp8266.md: -------------------------------------------------------------------------------- 1 | Homekit 整合 2 | === 3 | -------------------------------------------------------------------------------- /chapters/4-5-rpi-avs.md: -------------------------------------------------------------------------------- 1 | Raspberry Pi 与智能音箱 2 | === 3 | -------------------------------------------------------------------------------- /chapters/4-6-rpi-respeaker.md: -------------------------------------------------------------------------------- 1 | Raspberry Pi 自制智能音箱 2 | === 3 | -------------------------------------------------------------------------------- /chapters/4-7-rpi-ai-blockchain.md: -------------------------------------------------------------------------------- 1 | 超越 Raspberry Pi 2 | === 3 | 4 | -------------------------------------------------------------------------------- /css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/css/vendor.css -------------------------------------------------------------------------------- /epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/epub.css -------------------------------------------------------------------------------- /images/arduino/add-zip-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/add-zip-library.png -------------------------------------------------------------------------------- /images/arduino/arduino-5110-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduino-5110-connection.png -------------------------------------------------------------------------------- /images/arduino/arduino-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduino-button.jpg -------------------------------------------------------------------------------- /images/arduino/arduino-ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduino-ethernet.png -------------------------------------------------------------------------------- /images/arduino/arduino-hs-sr04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduino-hs-sr04.png -------------------------------------------------------------------------------- /images/arduino/arduino-install-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduino-install-package.png -------------------------------------------------------------------------------- /images/arduino/arduino-nokia-5110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduino-nokia-5110.png -------------------------------------------------------------------------------- /images/arduino/arduinos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/arduinos.jpg -------------------------------------------------------------------------------- /images/arduino/download-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/download-zip.png -------------------------------------------------------------------------------- /images/arduino/fritzing-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/fritzing-button.png -------------------------------------------------------------------------------- /images/arduino/fritzing-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/fritzing-example.jpg -------------------------------------------------------------------------------- /images/arduino/manage-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/manage-library.png -------------------------------------------------------------------------------- /images/arduino/serial-output-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/serial-output-example.png -------------------------------------------------------------------------------- /images/arduino/shields.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/images/arduino/shields.jpg -------------------------------------------------------------------------------- /img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/img/cover.jpg -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/index.html -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/init.sh -------------------------------------------------------------------------------- /listings-setup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/listings-setup.tex -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/style.css -------------------------------------------------------------------------------- /template/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/make/HEAD/template/template.tex --------------------------------------------------------------------------------