Close

5th September 2015

A project log for Smart Dew-Point Water Harvester

Harvesting clean drinking water from sunshine.

robert-hartRobert Hart 09/05/2015 at 10:590 Comments

I have order 2 Panels are 260W Vmp is 30.2V and Imp is 8.6A tindo solar who where kind enough to sell these to me at the whole price. I am currntly preparing the Solar Panel Regular, Charger and Mosfet Controllers.

Paul Schulz has join the team and is currently developing some code to run on an arduino for sensors and control. Its Brain will be a Raspberry pi2.

// Digital Inputs
const int ctlCoolerPin        =  2;
const int ctlCoolerFanPin     =  3;
const int ctlCoolerPumpPin    =  4;
const int ctlCondenserFanPin  =  5;
const int ctlCondenserPumpPin =  6;

// Outputs
const int outCoolerPin        =  7; 
const int outCoolerFanPin     =  8;
const int outCoolerPumpPin    =  9; // PWM 
const int outCondenserFanPin  = 10; // PWM
const int outCondenserPumpPin = 11; // PWM   
const int outStatus1Pin       = 12;
const int outStatus2Pin       = 13;

// Analog in
const int analog1Pin = 0;
const int analog2Pin = 1;
const int analog3Pin = 2;
const int analog4Pin = 3;
const int analog5Pin = 4;
const int analog6Pin = 5;

Discussions