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

Committer:
umairaftab
Date:
Wed Apr 09 21:36:13 2014 +0000
Revision:
4:8d1df60ef3c3
Rev2;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
umairaftab 4:8d1df60ef3c3 1 #include "DHT.h"
umairaftab 4:8d1df60ef3c3 2
umairaftab 4:8d1df60ef3c3 3 extern int error_outside;
umairaftab 4:8d1df60ef3c3 4 extern int error_inside;
umairaftab 4:8d1df60ef3c3 5
umairaftab 4:8d1df60ef3c3 6 float get_air_temp_outside(int tempunit);
umairaftab 4:8d1df60ef3c3 7 float get_air_humid_outside();
umairaftab 4:8d1df60ef3c3 8 float get_air_dewpoint_outside();
umairaftab 4:8d1df60ef3c3 9 float get_air_temp_inside(int tempunit);
umairaftab 4:8d1df60ef3c3 10 float get_air_humid_inside();
umairaftab 4:8d1df60ef3c3 11 float get_air_dewpoint_inside();