Free Grow Software!

Just a heads up I got it going Lucifer that file worked nice..ended up trying to just install it in the same folder and overwriting the other file..worked like a charm.
 
Just a heads up I got it going Lucifer that file worked nice..ended up trying to just install it in the same folder and overwriting the other file..worked like a charm.

Good to hear! I knew we'd get it eventually, I need to implement a consitency check and repair function during the upgrade process...on my to-do list :D

Lx
 
Yeah I noticed that too. I am also a mac user and I was glad to see you had a mac version. Can't wait until you finish porting it!
 
Hey KDN,

Any chance to get a look at the code for the microcontroller?
What are you looking for, anything specific?
something like this would run your lights and a pump(ebb and flow)
(relay on pin31,33)

Code:
//////////////////////////////////////////////////////
//Example Arduino code to run a light and pump
//////////////////////////////////////////////////////
 
#include <Time.h>
#include <TimeAlarms.h>
 
//PIN declarations
const int LIGHT = 31;
const int PUMP = 33;
 
//Alarm defaults
time_t defaultOnTime = AlarmHMS(18,00,0) ; // 6:00pm
time_t defaultOffTime = AlarmHMS(6,00,0) ;  // 6:00 am
pumpOnTime = 900; //in seconds = 15minutes
pumpOffTime = 13500; //in seconds - 3hours 45 minutes
 
 
void setup()
{
     pinMode(LIGHT,OUTPUT);
     pinMode(PUMP,OUTPUT);    
     Alarm.alarmRepeat(defaultOnTime,LightOn);    
     Alarm.alarmRepeat(defaultOffTime,LightOff);
     Alarm.timerOnce(pumpOnTime, PumpOn);
}
 
void loop()
{
      Alarm.delay(1000); 
}
 
void LightOn()
{
      digitalWrite(LIGHT, HIGH);
}
 
void LightOff()
{
      digitalWrite(LIGHT, LOW);
}
 
void PumpOn()
{
      digitalWrite(PUMP, HIGH);
      Alarm.timerOnce(pumpOnTime, PumpOff);
}
 
void PumpOff()
{
      digitalWrite(PUMP, HIGH);
      Alarm.timerOnce(pumpOffTime, PumpOn);
}
 
Upgrading from 0.6.6 to 0.6.9 did not work out so well!

Backing up manually did not work in 0.6.6 (clicking button "backup" had no action). I exported to a new folder in HerbIQ root. When I tried upgrading to 0.6.9, the auto backup failed and suggested manual, which I already did. I clicked "convert" then installed. Then when I go into app, first new thing is Win7 asks if I allow HerbIQ to make changes to hard drive, I say yes. I load the app, but all my plant data is not there!!! I go to Import, but it also erased my backup folder in the root HerbIQ! I closed app and reopened - same thing - no data!

Is all my plant data/pictures gone?
 
Back
Top