jgusta0331
Member
seems like a real nice program you got there but is it mac friendly and if not will it be in the future? thanks in advance
Actually you can install moonlight and use the linux version stillcool thanks Pravius. yeah i cant use it i have a powerpc mac and it requires intel. fml everything needs intel now. oh well.
thanks for the heads up but its a no go. keeps giving me an error message when i try to install moonlight. thanks again though.Actually you can install moonlight and use the linux version still
Lx
Good to know!hi,i am sing!
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 listJust 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.
Welcome Yeah I am going to finish porting the rest of the sections over, keep checking back for updatesThank you so much! Are there fixes in the works for the tabs that can't be accessed on the Mac version?
What are you looking for, anything specific?Hey KDN,
Any chance to get a look at the code for the microcontroller?
//////////////////////////////////////////////////////
//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);
}
Nope sorryNice program.
Any chance of a version for Android smartphones in the near future?