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.
New design layout
Re: New design layout
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.
no, just the recommended for new users "in the code" setting.
Re: New design layout
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?
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
Okay, now I understand.
It's done in ReefAngelClass::InitCustomLabels():
So "String("Port "+ String(a) + String(b))" giving 18 means "Box 1 Port 8".
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
Re: New design layout
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..