funny request for custom menu

Related to the development libraries, released by Curt Binder
Post Reply
wijigong
Posts: 51
Joined: Sat Sep 17, 2011 5:03 am

funny request for custom menu

Post by wijigong »

it is possible to add item call thunderstrom, just to impress people that come home :lol:

sorry for english i am french guy

thank you
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: funny request for custom menu

Post by rimai »

Yes, there is.
I still need to play around with the new custom menu stuff that Curt just released, though.
Roberto.
alexwbush
Posts: 327
Joined: Tue Mar 22, 2011 12:45 am
Location: San Diego, CA

Re: funny request for custom menu

Post by alexwbush »

exactly what I am looking to do next
wolfador
Posts: 241
Joined: Sun Sep 04, 2011 9:59 am
Location: Pittsburgh, PA

Re: funny request for custom menu

Post by wolfador »

wijigong wrote:it is possible to add item call thunderstrom, just to impress people that come home :lol:

sorry for english i am french guy

thank you
I don't have LED's so I do not use the PWM stuff but, did you check under the PWM Expansion Relay menu?
Inside ReefAngel.cpp

Code: Select all

#ifdef PWMExpansion
// Menu for the PWM Expansion Relay
const prog_char pwmmenu_0_label[] PROGMEM = "Slow Cloud";
const prog_char pwmmenu_1_label[] PROGMEM = "Fast Cloud";
const prog_char pwmmenu_2_label[] PROGMEM = "T-storm 1";
const prog_char pwmmenu_3_label[] PROGMEM = "T-storm 2";
const prog_char pwmmenu_4_label[] PROGMEM = "0 %";
const prog_char pwmmenu_5_label[] PROGMEM = "50 %";
const prog_char pwmmenu_6_label[] PROGMEM = "100 %";
const prog_char pwmmenu_7_label[] PROGMEM = "Custom";

PROGMEM const char *pwmmenu_items[] = {
pwmmenu_0_label, pwmmenu_1_label, pwmmenu_2_label, pwmmenu_3_label,
pwmmenu_4_label, pwmmenu_5_label, pwmmenu_6_label, pwmmenu_7_label
};

enum PWMMenuItem {
PWMMenu_SlowCloud,
PWMMenu_FastCloud,
PWMMenu_TStorm1,
PWMMenu_TStorm2,
PWMMenu_0,
PWMMenu_50,
PWMMenu_100,
PWMMenu_Custom
};
#endif // PWMExpansion
John
ReefAngel and ReefAngel-HD developer
If the RA iOS app has helped please consider a donation
Image
Post Reply