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:
7:1d691f81d455
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pumps/pumps.cpp	Fri Apr 11 03:50:38 2014 +0000
@@ -0,0 +1,26 @@
+#include "mbed.h"
+#include "pumps.h"
+//#include "pumps_pindefs.h"
+
+
+void pumps(bool pump_1,bool pump_2,bool valve_1,bool humidity_fan_1)
+{
+    pump1=0;
+    pump2=0;
+    valve1=0;
+    humidity_fan1=0;
+    if(pump_1==true) {
+        pump1=1;//enable
+    }
+    if(pump_2==true) {
+        pump_2=1;//enable
+    }
+    if(valve_1==true) {
+        valve1=1;//enable
+    }
+    if(humidity_fan_1==true) {
+        humidity_fan1=1;//enable
+    }
+
+
+}
\ No newline at end of file