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.
Diff: peltier/peltier.h
- Revision:
- 44:083a8de27bd9
- Parent:
- 38:9f4107db1bff
diff -r cf893fa88690 -r 083a8de27bd9 peltier/peltier.h --- a/peltier/peltier.h Mon Apr 14 04:25:50 2014 +0000 +++ b/peltier/peltier.h Mon Apr 14 04:53:18 2014 +0000 @@ -23,7 +23,10 @@ unsigned int pwm_cold_peltier(int brightness ); unsigned int pwm_hot_peltier(int brightness); +extern float temp; + void tempinit(); +void readTemp(int deviceNum); void peltier(bool fan_in,bool fan_out,bool cold,bool hot,int pwm_procent); void peltier_auto(float degree);