Page 1 of 2

Re: New design layout

Posted: Wed Sep 25, 2013 6:28 pm
by ganjero
Thanks for adding the file.

I will try it and provide feedback. To change the library I just need to replace the folders in \Documents\Ardunio\libraries with the ones in the zip file, correct?

Thank you Roberto.

Re: New design layout

Posted: Wed Sep 25, 2013 7:28 pm
by rimai
correct

Re: New design layout

Posted: Thu Sep 26, 2013 3:40 pm
by ganjero
I just installed this.
Feedback so far:
- I found that there is some error displaying my T1.
- Whats is the normal mode screen?

Screenshots (sorry for the low quality cell pics)
Image
Image
Image
Image
Image
Image
Image

Re: New design layout

Posted: Thu Sep 26, 2013 3:48 pm
by rimai
I guess I need a better sentence :(
That screen only has 1 option to display, which is lights on mode.
If it is not lights on mode, it will display "Normal mode"
Should I name something else?

Posted: Thu Sep 26, 2013 3:51 pm
by lnevo
Looks great! Gonna mess with my custom screens for sure though...

How are we gonna hook into that?

Re: New design layout

Posted: Thu Sep 26, 2013 4:54 pm
by ganjero
Could the DCPump screen be "live" and show the speeds go up and down?

Re: New design layout

Posted: Thu Sep 26, 2013 5:11 pm
by rimai
You can see that in the AP/DP signals.

Re: New design layout

Posted: Thu Sep 26, 2013 5:14 pm
by rimai
I guess we could have a new screen dedicated for AP/DP with bars too.
In fact, I think that's what I'll do.

Re: New design layout

Posted: Thu Sep 26, 2013 5:15 pm
by rimai
I can't seem to be able to replicate your T1 problem though

Re: New design layout

Posted: Thu Sep 26, 2013 5:25 pm
by ganjero
rimai wrote:I guess we could have a new screen dedicated for AP/DP with bars too.
In fact, I think that's what I'll do.
Awesome
rimai wrote:I can't seem to be able to replicate your T1 problem though
Maybe something in my code? Other screen show fine so I dont think is the screen

Re: New design layout

Posted: Thu Sep 26, 2013 5:26 pm
by rimai
Found it :)
Thanks for letting me know!!
I'll fix it on next revision.

Re: New design layout

Posted: Thu Sep 26, 2013 9:22 pm
by rimai
Ok, I updated the dev branch with the dimming channels in a separate screen.

Re: New design layout

Posted: Fri Sep 27, 2013 11:15 am
by ganjero
Roberto,

I will try it when I get home. Is there a way to chart the AP/DP? I would like to see how the wave patterns are behaving through the day.

Thanks

Re: New design layout

Posted: Fri Sep 27, 2013 11:24 am
by lnevo
Custom screens...hows that gonna work???

Re: New design layout

Posted: Fri Sep 27, 2013 11:29 am
by rimai
ganjero wrote:Roberto,

I will try it when I get home. Is there a way to chart the AP/DP? I would like to see how the wave patterns are behaving through the day.

Thanks
http://forum.reefangel.com/status/chart ... ilter=pwmd
The controller only sends data every 5 minutes though

Re: New design layout

Posted: Fri Sep 27, 2013 11:30 am
by rimai
lnevo wrote:Custom screens...hows that gonna work???
Doesn't change a thing.
Just like custom screens bypass the original one, it will bypass this one too.

Re: New design layout

Posted: Fri Sep 27, 2013 11:31 am
by rimai
Also, if you don't add ReefAngel.Use2014Screen(); the new screen is not enabled anyway.

Re: New design layout

Posted: Fri Sep 27, 2013 12:02 pm
by lnevo
Is there a way to tap into the new screen though and add stuff? Maybe like a DrawCustomGraph() ?

Would love to get all the new stuff but keep some functionality...

Or can I do my own DrawCustomMain() and call a Draw function for the screens you've created?

Re: New design layout

Posted: Fri Sep 27, 2013 1:47 pm
by ganjero
T1 display issue fixed and Dimming ports bars screen added.

Thanks Roberto

New screenshots


Image


Image

Re: New design layout

Posted: Sat Nov 16, 2013 9:53 am
by Bruz4023
lnevo wrote:Is there a way to tap into the new screen though and add stuff? Maybe like a DrawCustomGraph() ?

Would love to get all the new stuff but keep some functionality...

Or can I do my own DrawCustomMain() and call a Draw function for the screens you've created?
Did we get an answer to this i would love to alter the new screens! I love how they look but somethings are not named properly for my system!

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..