Project Autus - Automated Plant Chamber
Fork of keypad_test by
Autus
This is the codebase accompanying the project Autus.
Autus is an automated growth chamber for plants.
Features
Control Humidity inside chamber wrt to external humidity. Control Temperature inside chamber. ( Peltier Heaters/Coolers ) Water and shower plants. Control soil humidity. Monitor water tanks level (Load Cell)
Code Base Features
Fixed timing and CRC for DHT-11 Sensor. Fixed OneWire bug for ds18b20
Cyclic Executive Scheduler with Priority. Async IPC framework for PC App over bluetooth
Fake RTC systick, I was having some trouble with the on board rtc.
UI/ui.h@8:2d462919519e, 2014-04-11 (annotated)
- Committer:
- umairaftab
- Date:
- Fri Apr 11 11:05:02 2014 +0000
- Revision:
- 8:2d462919519e
- Parent:
- 7:1d691f81d455
- Child:
- 11:f9ffd5ab7e94
RTC ADDED, STARTUP FUNCTIONS ADDED ;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
umairaftab | 3:087ce66714c0 | 1 | #include "mbed.h" |
umairaftab | 3:087ce66714c0 | 2 | #include "TextLCD.h" |
umairaftab | 7:1d691f81d455 | 3 | extern TextLCD lcd; |
umairaftab | 4:8d1df60ef3c3 | 4 | |
umairaftab | 4:8d1df60ef3c3 | 5 | |
umairaftab | 4:8d1df60ef3c3 | 6 | |
umairaftab | 4:8d1df60ef3c3 | 7 | extern int temp_unit; |
umairaftab | 4:8d1df60ef3c3 | 8 | |
umairaftab | 4:8d1df60ef3c3 | 9 | extern float outside_humidity; |
umairaftab | 4:8d1df60ef3c3 | 10 | extern float outside_temp; |
umairaftab | 4:8d1df60ef3c3 | 11 | extern float outside_dewpoint; |
umairaftab | 4:8d1df60ef3c3 | 12 | |
umairaftab | 4:8d1df60ef3c3 | 13 | extern float inside_humidity; |
umairaftab | 4:8d1df60ef3c3 | 14 | extern float inside_temp; |
umairaftab | 4:8d1df60ef3c3 | 15 | extern float inside_dewpoint; |
umairaftab | 4:8d1df60ef3c3 | 16 | |
umairaftab | 4:8d1df60ef3c3 | 17 | extern float soil1_humidity; |
umairaftab | 4:8d1df60ef3c3 | 18 | extern float soil2_humidity; |
umairaftab | 4:8d1df60ef3c3 | 19 | |
umairaftab | 8:2d462919519e | 20 | void ui_startup(); |
umairaftab | 8:2d462919519e | 21 | void ui_screen1() ; |
umairaftab | 8:2d462919519e | 22 | void ui_screen2() ; |
umairaftab | 8:2d462919519e | 23 | void ui_screen3() ; |