Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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.
Diff: UI/ui.h
- Revision:
- 4:8d1df60ef3c3
- Parent:
- 3:087ce66714c0
- Child:
- 7:1d691f81d455
diff -r 087ce66714c0 -r 8d1df60ef3c3 UI/ui.h --- a/UI/ui.h Wed Apr 09 18:26:03 2014 +0000 +++ b/UI/ui.h Wed Apr 09 21:36:13 2014 +0000 @@ -1,3 +1,19 @@ #include "mbed.h" #include "TextLCD.h" -TextLCD lcd(PTE29, PTE30, PTC1, PTD0, PTD5, PTA13, TextLCD::LCD20x2); \ No newline at end of file +TextLCD lcd(PTE29, PTE30, PTC1, PTD0, PTD5, PTA13, TextLCD::LCD20x2); + + + +extern int temp_unit; + +extern float outside_humidity; +extern float outside_temp; +extern float outside_dewpoint; + +extern float inside_humidity; +extern float inside_temp; +extern float inside_dewpoint; + +extern float soil1_humidity; +extern float soil2_humidity; +