My LCD keeps timing out. not sure where to change it. It just blinks for a second if i hit the joy stick.
Is this where I should change something
void LCD_Boot(void)
{
e.lcd_init();
e.lcd_clear(200,0,0,131,15);
e.lcd_draw_text(31, 200, 6, 5, "Reef Controller Demo");
e.lcd_clear(216,0,15,131,15);
e.lcd_clear(212,0,16,131,17);
e.lcd_clear(212,0,17,131,16);
e.lcd_clear(208,0,18,131,18);
}
void Check_LCD_PowerSave(boolean bHome)
{
LastPowerSave=millis();
if (PowerSave)
{
PowerSave=false;
e.lcd_Wake();
LCD_Boot();
e.lcd_BacklightOn();
if (bHome) menuExit();
}
}
void loading_delay(int idelay)
{
for (int a=0; a<idelay;a++)
{
LCD won't stay on.
Re: LCD won't stay on.
Make sure that the lcd timeout is greater than zero when you update memory settings with the client 2.2
Roberto.
Re: LCD won't stay on.
Can you tell me where to find that. Still trying to navigate my way around the code.rimai wrote:Make sure that the lcd timeout is greater than zero when you update memory settings with the client 2.2
Re: LCD won't stay on.
How do you get into that?Bryan wrote:
Re: LCD won't stay on.
He is using the demo software and the client suite and memory stuff does not apply to him.
There is a setting that is being missed. Roberto will be able to shed more light as i am not that familiar with it.
curt
There is a setting that is being missed. Roberto will be able to shed more light as i am not that familiar with it.
curt
Re: LCD won't stay on.
Maybe we need to start from the beginning.
That code looks like the old preloaded code. Are you trying to change something in the code?
If you are, I highly recommend you use RAGen instead: http://forum.reefangel.com/viewtopic.php?f=15&t=60
It will generate the code for you, so you won't need to do be thinking about code.
That code looks like the old preloaded code. Are you trying to change something in the code?
If you are, I highly recommend you use RAGen instead: http://forum.reefangel.com/viewtopic.php?f=15&t=60
It will generate the code for you, so you won't need to do be thinking about code.
Roberto.
Re: LCD won't stay on.
Sorry, thought you were using Reef Client 2.2thedru13 wrote:How do you get into that?Bryan wrote:
-=Bryan=-