├── README.md ├── SmartHome-RPi ├── Camera │ ├── CameraPhoto.sh │ ├── CameraVideo.sh │ └── CurrentPhoto.jpg ├── Display │ ├── CameraPhoto.sh │ ├── Lamp.txt │ ├── LampOff │ ├── LampOff.c │ ├── LampOn │ ├── LampOn.c │ ├── LampRead │ ├── LampRead.c │ ├── TAH.txt │ ├── dht11.c │ ├── dht11.h │ ├── io.h │ ├── main │ ├── main.c │ ├── oled.h │ └── 编译 ├── Ngrok │ ├── ID_ngrok │ └── sunny └── WeChat │ └── raspchat │ ├── CameraPhoto.sh │ ├── CurrentPhoto.jpg │ ├── Lamp.txt │ ├── LampOff │ ├── LampOn │ ├── LampRead │ ├── TAH.txt │ ├── index.py │ ├── index.pyc │ ├── main │ ├── mediaid.txt │ └── templates │ ├── reply_image.xml │ └── reply_text.xml └── SmartHome.png /README.md: -------------------------------------------------------------------------------- 1 | # RaspberryPi 2 | 树莓派-智能家居项目
3 | 4 | ![image](SmartHome.png) 5 | -------------------------------------------------------------------------------- /SmartHome-RPi/Camera/CameraPhoto.sh: -------------------------------------------------------------------------------- 1 | raspistill -o CurrentPhoto.jpg -t 500 -------------------------------------------------------------------------------- /SmartHome-RPi/Camera/CameraVideo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Camera/CameraVideo.sh -------------------------------------------------------------------------------- /SmartHome-RPi/Camera/CurrentPhoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Camera/CurrentPhoto.jpg -------------------------------------------------------------------------------- /SmartHome-RPi/Display/CameraPhoto.sh: -------------------------------------------------------------------------------- 1 | raspistill -o CurrentPhoto.jpg -t 500 -------------------------------------------------------------------------------- /SmartHome-RPi/Display/Lamp.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /SmartHome-RPi/Display/LampOff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/LampOff -------------------------------------------------------------------------------- /SmartHome-RPi/Display/LampOff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/LampOff.c -------------------------------------------------------------------------------- /SmartHome-RPi/Display/LampOn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/LampOn -------------------------------------------------------------------------------- /SmartHome-RPi/Display/LampOn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/LampOn.c -------------------------------------------------------------------------------- /SmartHome-RPi/Display/LampRead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/LampRead -------------------------------------------------------------------------------- /SmartHome-RPi/Display/LampRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/LampRead.c -------------------------------------------------------------------------------- /SmartHome-RPi/Display/TAH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/TAH.txt -------------------------------------------------------------------------------- /SmartHome-RPi/Display/dht11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/dht11.c -------------------------------------------------------------------------------- /SmartHome-RPi/Display/dht11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/dht11.h -------------------------------------------------------------------------------- /SmartHome-RPi/Display/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/io.h -------------------------------------------------------------------------------- /SmartHome-RPi/Display/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/main -------------------------------------------------------------------------------- /SmartHome-RPi/Display/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/main.c -------------------------------------------------------------------------------- /SmartHome-RPi/Display/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/oled.h -------------------------------------------------------------------------------- /SmartHome-RPi/Display/编译: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Display/编译 -------------------------------------------------------------------------------- /SmartHome-RPi/Ngrok/ID_ngrok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Ngrok/ID_ngrok -------------------------------------------------------------------------------- /SmartHome-RPi/Ngrok/sunny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/Ngrok/sunny -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/CameraPhoto.sh: -------------------------------------------------------------------------------- 1 | raspistill -o CurrentPhoto.jpg -w 640 -h 480 -t 500 -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/CurrentPhoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/CurrentPhoto.jpg -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/Lamp.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/LampOff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/LampOff -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/LampOn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/LampOn -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/LampRead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/LampRead -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/TAH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/TAH.txt -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/index.py -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/index.pyc -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/main -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/mediaid.txt: -------------------------------------------------------------------------------- 1 | {"type":"image","media_id":"F4i66nqOJlDZTmJP5-x4JHGzRIO5aQjZ_mEZm6ZuSAos3hN55dgTZvXIXDJHnUYL","created_at":1515933555} -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/templates/reply_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/templates/reply_image.xml -------------------------------------------------------------------------------- /SmartHome-RPi/WeChat/raspchat/templates/reply_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome-RPi/WeChat/raspchat/templates/reply_text.xml -------------------------------------------------------------------------------- /SmartHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiBugs/RaspberryPi/HEAD/SmartHome.png --------------------------------------------------------------------------------