├── Makefile ├── README.md ├── screenshot ├── gpio.png └── lcd.png ├── src ├── 12864_display.c ├── 12864_display.h ├── cJSON.c ├── cJSON.h ├── dht22.c ├── dht22.h ├── get_weather.c ├── get_weather.h ├── lcd.c ├── srv_func.c ├── srv_func.h ├── system_usage.c └── system_usage.h ├── systemd └── lcd12864.service └── tool └── chlcd.sh /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/README.md -------------------------------------------------------------------------------- /screenshot/gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/screenshot/gpio.png -------------------------------------------------------------------------------- /screenshot/lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/screenshot/lcd.png -------------------------------------------------------------------------------- /src/12864_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/12864_display.c -------------------------------------------------------------------------------- /src/12864_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/12864_display.h -------------------------------------------------------------------------------- /src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/cJSON.c -------------------------------------------------------------------------------- /src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/cJSON.h -------------------------------------------------------------------------------- /src/dht22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/dht22.c -------------------------------------------------------------------------------- /src/dht22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/dht22.h -------------------------------------------------------------------------------- /src/get_weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/get_weather.c -------------------------------------------------------------------------------- /src/get_weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/get_weather.h -------------------------------------------------------------------------------- /src/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/lcd.c -------------------------------------------------------------------------------- /src/srv_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/srv_func.c -------------------------------------------------------------------------------- /src/srv_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/srv_func.h -------------------------------------------------------------------------------- /src/system_usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/system_usage.c -------------------------------------------------------------------------------- /src/system_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/src/system_usage.h -------------------------------------------------------------------------------- /systemd/lcd12864.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/systemd/lcd12864.service -------------------------------------------------------------------------------- /tool/chlcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoloudongfeng/raspberrypi_service/HEAD/tool/chlcd.sh --------------------------------------------------------------------------------