-
Forum
-
Main Forum
-
Wemos Nixie Clock Support Forum
-
Firmware Topics PRISM-IN-18
Firmware Topics PRISM-IN-18
Less
More
-
Posts: 128
-
Thank you received: 5
-
-
1 year 1 week ago - 1 year 1 week ago #11109
by Hartmut E.
Hi Ian,
2 problems are currently not solved with my Prism-IN-18 firmware:
1. "Colortime backlight" is in the wrong order. Second is on hour. How can i fix this? (see video)
Video for "Colourtime backlight"
2. The fading does not work. I only have a hard transition in the number sequence.
Maybe you can help me with that because I'm not so good at programming.
Thanks and regards
Hartmut
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 128
-
Thank you received: 5
-
-
1 year 1 week ago #11110
by Hartmut E.
Hi All,
so I could solve the first point with "Color Time" with trial and error. I have very little idea about programming.
case BACKLIGHT_COLOUR_TIME:
for (int i = 0 ; i < 6 ; i++) {
ledR[0+i] = getLEDAdjusted(colourTimeR[numberArray[i]],1,1);
ledG[0+i] = getLEDAdjusted(colourTimeG[numberArray[i]],1,1);
ledB[0+i] = getLEDAdjusted(colourTimeB[numberArray[i]],1,1);
}
outputLEDBuffer();
break;
case BACKLIGHT_COLOUR_TIME_DIM:
for (int i = 0 ; i < 6 ; i++) {
ledR[0+i] = getLEDAdjusted(colourTimeR[numberArray[i]],1,dimFactor);
ledG[0+i] = getLEDAdjusted(colourTimeG[numberArray[i]],1,dimFactor);
ledB[0+i] = getLEDAdjusted(colourTimeB[numberArray[i]],1,dimFactor);
}
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 1120
-
Karma: 1
-
Thank you received: 119
-
-
-
-
10 months 1 week ago #11393
by Ian
Hi Marvin, there's a separate topic for this: But just to repeat here: I am doing a firmware update at the moment. All will be solved soon.
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 128
-
Thank you received: 5
-
-
10 months 1 week ago #11395
by Hartmut E.
Hi Ian,
I'm testing the PrismFirmwareBeta-2020-04-10 looks good on the PRISM IN-18 and Z566M.
I really like the way the numbers go from time to date and back.
Otherwise everything works fine.
Hartmut
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 128
-
Thank you received: 5
-
-
Less
More
-
Posts: 1120
-
Karma: 1
-
Thank you received: 119
-
-
-
-
9 months 3 weeks ago #11484
by Ian
I have just finished my learning with Wemos Interrupts. I have just finished software for the Wemos 4-Digit clock. and and going to do the Prism next.
The Wemos is a lot harder: It does multiplexing, so the routine is a lot harder, but I wanted to take the possibility to learn what can be done with ESP8266 interrupts.
Please Log in or Create an account to join the conversation.
-
Forum
-
Main Forum
-
Wemos Nixie Clock Support Forum
-
Firmware Topics PRISM-IN-18
Time to create page: 0.146 seconds