Arduino Controlled Grow and PC Program - Work In Progress

omnidrive

Member
I do not have to send you the file by email advancednewbie :( Your e-mail address is invalid :(
contact me in private for send the file of Sebduino

http://www.ilot-recif.fr/portal.php

Sebduino can manage:

- Management of 4 independent lines of lights
- Possibility of gradual ignition and extinction for each of these lines
- a skimmer delay when power failure with adjustable time delay
- Manual for the on / off of the skimmer, pump lift, pumps brews, oscillators
- 2 oscillators with management for each angle setting start and end of rotation and speed
- Management of 8 dosing pumps with adjustable time for each dosing pumps
- Display the temperature of the tank and the room - Getting Started The fan tray set temperature
- Display PH tray
- Control solenoid according to a set PH
- Viewing time and date
- Ability to rename lighting lines (6 character max)

he use ITDB02 4.3 , bitmap and RAW picture it' s very beautyfull !
But the best for me it's the 8 dosing pump controle and the parameter of the water ,it's very interessting !
good luck ;)


 

omnidrive

Member
hello world :)
New information for ITDB02 SSD1963-800

Touch does work with Henning's UTouch library. The X and Y are transposed and only scaled to a 320 x 240 display. The transposing is easy:
y = myTouch.getX();
x = myTouch.getY();
The scaling just takes a little bit of coding to fix, like so (from Henning's Quickdraw example):
myGLCD.drawPixel ((x*800)/240, (y*480)/320);
It's probably trivial to fix the library but for me ITDB02 SSD1963-480 ( 4.3") is dead for this moment :( it's beyond me.

Source : http://imall.iteadstudio.com/display/tft-lcm/im120419008.html

bye !
 

AdvancedNewbie

Well-Known Member
Nice scaling formulas. I was doing something similar, but that looks like it'd be more exact. If you were experimenting with the old envirocontrol on your Pi your SD card is probably dead! lol. Good thing they're like $2/GB now. And yeaaaas, I hope you enjoy the new easier to understand and partitioned code. :)
 

omnidrive

Member
yes the partition is very clear, do you have looking Sebduino ? is very interesting
for my touchscren is bad, i have not solution at this time !
oh very beautiful online site ;) but my intervention it's here for me ;) the ultimate source ;)
 

omnidrive

Member
you want me dead Advanced ?
I'm really disappointed me the raspberry is dropped ;
( and after that I saw the code I already Envoy potential but this level c is art my friend ;)
 

AdvancedNewbie

Well-Known Member
lol... It might seem that way, but I'm just hoping you find a bucket full of Raspberries! Now that it's all split up it might be considered 'art', but before? Maybe a Picasso?
 

zVice

Active Member
is there a usb sensor available that will do temp and humidity and can connect to a raspberry?

apologies if this has been answered/covered.

tia

EDIT: found these, but the price for the temp/humid/pressure seems a bit excessive
also can't source them locally (uk) but think they may ship here

http://www.yoctopuce.com/EN/products/category/usb-sensors

its quite sweet that they have a lux sensor, your could get the system to let you know when your bulbs are burning out.
 

AdvancedNewbie

Well-Known Member
is there a usb sensor available that will do temp and humidity and can connect to a raspberry?

apologies if this has been answered/covered.

tia

EDIT: found these, but the price for the temp/humid/pressure seems a bit excessive
also can't source them locally (uk) but think they may ship here

http://www.yoctopuce.com/EN/products/category/usb-sensors

its quite sweet that they have a lux sensor, your could get the system to let you know when your bulbs are burning out.
The Raspberry Pi only controls the web interface, the Arduino is what the sensors connect to. I use a DHT11 and a LM35 along with a simple LDR <--- all three under $3
 

zVice

Active Member
all I'm really after is a simple system where the temp/humidity can be checked remotely
minimum effort, and reasonable cost

don't really want to be wiring shit up and fiddling with chips and shit

is there a similar plug and play system, all the one's I've found that you can buy just seem a bit shit.

props to your work so far though on the yieldbuddy dude, it looks insane


The Raspberry Pi only controls the web interface, the Arduino is what the sensors connect to. I use a DHT11 and a LM35 along with a simple LDR <--- all three under $3
 

omnidrive

Member
Advancednewbie do you have new information or solution for my itdb02 4_3 ? i have not new information, it's very hard for me because I can not find user :(
 

AdvancedNewbie

Well-Known Member
Advancednewbie do you have new information or solution for my itdb02 4_3 ? i have not new information, it's very hard for me because I can not find user :(
No worries, I'm on it. Just had to get the new update out and now it's time for the touchscreen interface.
 

AdvancedNewbie

Well-Known Member
hello world :)
New information for ITDB02 SSD1963-800

Touch does work with Henning's UTouch library. The X and Y are transposed and only scaled to a 320 x 240 display. The transposing is easy:
y = myTouch.getX();
x = myTouch.getY();
The scaling just takes a little bit of coding to fix, like so (from Henning's Quickdraw example):
myGLCD.drawPixel ((x*800)/240, (y*480)/320);
It's probably trivial to fix the library but for me ITDB02 SSD1963-480 ( 4.3") is dead for this moment :( it's beyond me.

Source : http://imall.iteadstudio.com/display/tft-lcm/im120419008.html

bye !
He shouldn't be doing it like this... lol
Really, it should be like so:

screen_width = 800;
screen_height = 480
y = myTouch.getX();
y = (y*screen_height)/320;
x = myTouch.getY();
x = (x*screen_width)/240;

myGLCD.drawPixel (x, y);
This way, you could pass x and y directly to any myGLCD sub-function without having to convert the values each time within the function call itself.
 
Top