^_^ Good job Billie... I love it.
Now, I got a screen like that you used it, any recommendation before to start working with it or information that can help me?
Thx! The first thing I do with everything I order is check if it works. Try the examples that are in the
UTFT library from Henning's site...If you get the examples to work i'd try to get the touch function to work, again with the library you find at Henning's site and go from there...
Looks Really Cool. I tried to download the code but could not. I tried on a mac using safari, chrome, firefox and on windows using i.e.. All with save target or save file as, or download file as.
Is there anywhere else you can post the code?
Also your temp humidity problem should be easy to fix by turning the fans on and off a few degrees apart instead of using one set point.
ex
float SetpointTwo;
if (CurrentTemp > Setpoint)
{
// Turn On Fans;
}
SetPointTwo = Setpoint - 3;
if (CurrentTemp < SetpointTwo)
{
//Turn Off Fans;
}
Sometimes you can download it from the forum and sometimes you can't. I suspect it has something to do with the download quota that the forum uses...
I'll try to post the code on github or something...
Also thanks for thinking with me. I already thought of using a Hystery with the setpoint. Just like I did with the pH algorithm... This way one can also set the hystery instead of hard-coding it.
With kind regards,
Billie