Stef Weicks hello Apparently we exceed th elenght of you discussion thread :) How

haaaa … for me not that easy but yea that was it!!

@Stef_Weicks i have seen your update.
Great job.
One last thing to correct.
Static bool new_record=true;

Otherwise it closes the first file.
Sorry it was that laborious but lifting weight and coding at the same time is not that easy lol

haha… you are crazy man!
But now lets start recording some amazing animations!!! :wink:

@Stef_Weicks I want to see them :wink:

of course … soon i will upload some … and you are the first who will see it! 8)

one more question: in the artnetwifi+sdread file … i did the clock color with this. matrix->setTextColor(colors[0]);

i did the modification in the matrixclockcode for example with color[100] which is yellow. if i am doing this in the artnetwifi+sdread file it wont work… perhaps you know the reason for this? line 332.

there is no much difference between the codes.

@Stef_Weicks why colors[100] ?
You have only three values in that array.
So you can only select 0,1,2 and those three values are red,green,blue. Not yellow do you have another table Colors defined somewhere?

yes in the head… its
const uint16_t colors[] = {
matrix->Color(255, 0, 0), matrix->Color(0, 255, 0), matrix->Color(0, 0, 255) };

@Stef_Weicks yes this array as only three values in it these 3 Colors are representing red,green,blue.

yes i know… but if i put in … for example color [100] i got yellow… and 40… or 80 is “black” and 0 is red
but there are no more parameters for color… the first time it also worked in the artnet-file

have fun with my first video of our amazing matrix-screen in full function… at the moment i have only a few script files and a demo of jinx running over wifi

soon … i will upload some other nice stuff 8)

https://drive.google.com/open?id=1ORj1o4uoC9fL8VOO3E55GpVYn4Rn_tz6

@Stef_Weicks it’s because you are reading somewhere In memory that gives you yellow but I would say it’s luck
May be if you change your code add a variable and re compile it you’ll get another color
And 0 is red cause your are calling the first value of that array.

Could you try to put 0xffffff instead of colors[100].
And let me know if it complie and if yes it should be white

@Stef_Weicks i love it it’s really cool !!! I love the video I really have to get the jinx universe mapping working I love the animation they can do.

it’s purple missing/deleted image from Google+

@Stef_Weicks ok then I see

ah i have to put it in the loop!

@Stef_Weicks create a slider 0-255 like that you’ll map into your program to color
BLYNK_WRITE(V4) // Slider - Clockcolor
{
color = param.asInt();
CRGB c=CHSV(color,128,128);
matrix->setTextColor(matrix->Color(c.r, c.g, c.b));
}

do not do anything in you loop
This should go rainbow

… you mean because of the speed ?

i try one moment

@Stef_Weicks because you do not need to update the color every time :£