Project Autus - Automated Plant Chamber

Dependencies:   TextLCD mbed

Fork of keypad_test by Plamen Totev

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) /media/uploads/umairaftab/frdm_-_new_page1.png

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.

/media/uploads/umairaftab/download.png

Revision:
56:d1e81ca74f22
Parent:
55:0bfa6b62a66b
Child:
57:7ab93ed49b70
--- a/main.cpp	Mon Apr 14 15:59:44 2014 +0000
+++ b/main.cpp	Mon Apr 14 16:10:19 2014 +0000
@@ -113,7 +113,7 @@
 
 void printer_print_values(){
     
-    printf("\n\r**Autus Sensor Values**\r");
+    printf("\r****Autus Sensor Values****\r");
     wait(1);
     printer.printf("Chamber Temp: %4.2f\r",inside_temp);
     wait(1);
@@ -133,7 +133,7 @@
     wait(1);
     printer.printf("Load Cell: %4.2f\r",weight_sensor);
     wait(1);
-    printer.printf("\r*****END*****\r");
+    printer.printf("**********END**********\r");
 }
 
 //**************************FUNCTION TO READ SENSORS **********************************************