├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── green_ctrl.c ├── lnklst.c ├── lnklst.h ├── main.c ├── serial.c ├── serial.h ├── sms_menu.c ├── sms_menu.h ├── telLibrary.c ├── telLibrary.h ├── uni.c ├── uni.h ├── utils.c └── utils.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/README.md -------------------------------------------------------------------------------- /green_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/green_ctrl.c -------------------------------------------------------------------------------- /lnklst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/lnklst.c -------------------------------------------------------------------------------- /lnklst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/lnklst.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/main.c -------------------------------------------------------------------------------- /serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/serial.c -------------------------------------------------------------------------------- /serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/serial.h -------------------------------------------------------------------------------- /sms_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/sms_menu.c -------------------------------------------------------------------------------- /sms_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/sms_menu.h -------------------------------------------------------------------------------- /telLibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/telLibrary.c -------------------------------------------------------------------------------- /telLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/telLibrary.h -------------------------------------------------------------------------------- /uni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/uni.c -------------------------------------------------------------------------------- /uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/uni.h -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowieXue/Linux_Greenhouse-app/HEAD/utils.h --------------------------------------------------------------------------------