Page 2 of 2

Re: New design layout

Posted: Tue Jan 21, 2014 8:34 am
by psidriven
just updated to the new display this weekend. noticed that the head unit menu overheat setting is overriding what i entered through the wizard. what other settings in the menu overrides wizard settings?

i've since changed the overheat setting from 78 to 85.

Re: New design layout

Posted: Tue Jan 21, 2014 9:06 am
by rimai
Are you using internal memory settings?

Re: New design layout

Posted: Sun Jan 26, 2014 11:32 am
by psidriven
sorry, bonehead mistake on my part. put in the set temp as overheat temp in the wizard. fixed now.

no, just the recommended for new users "in the code" setting.

Re: New design layout

Posted: Sun Feb 02, 2014 8:08 am
by KRavEN
So I'm using the example from CustomMainScreen_PowerControlExpansion and I was wondering if the relay expansion port labels are supposed to display starting at "Port 11" going through "Port 18"?

I understand why it's happening. #define Box1_Port1 11 in Globals.h. I'm just wondering if the new screens need code added to change the label to either "Port 9" through "Port 16" or "Exp Port 1" through "Exp Port 8" or if this is the desired label?

Re: New design layout

Posted: Sun Feb 02, 2014 8:16 am
by KRavEN
Okay, now I understand.

It's done in ReefAngelClass::InitCustomLabels():

Code: Select all

#ifdef RelayExp
	for (int a=1;a<=MAX_RELAY_EXPANSION_MODULES;a++)
		for (int b=1;b<=8;b++)
			CustomLabels[(a*8)+b-1]=String("Port "+ String(a) + String(b));
#endif // RelayExp
So "String("Port "+ String(a) + String(b))" giving 18 means "Box 1 Port 8".

Re: New design layout

Posted: Fri Apr 11, 2014 12:07 am
by paulvisco
nice work I like the layout. Im guessing in time all the sub menus could be dolled up to be more graphical.. Its w nice feature set you have going here..