ah i think i know … because of the failing dns … i check it
edit: no its not
ah i think i know … because of the failing dns … i check it
edit: no its not
@Stef_Weicks I am not an expert in networking the only thing I can say is that even if you rum part of the code on core 0. The core WiFi is on core 1 and maybe the routines in that case are more cpu demanding => issues
But I am not sure. What could be an option is to request the WiFi status less often
oh ok … I’ve already noticed this problem in other projects too.
Thanx anyway!
@Stef_Weicks I am really curious about your new animations
Yeah! I got post !
I hope this panels fit now to the other one
Today I mount them and then I will make some videos missing/deleted image from Google+
i did the modification as you said and i think it should work:
but i get always a Guru Meditation Error: Core 1 panic’ed (LoadProhibited). Exception was unhandled.
maybe you have time to look over the code…
@Stef_Weicks good luck
@Stef_Weicks I ma gonna look
@Stef_Weicks so
like always coudl not compile it or tried it
thanks … i think you meant “/%s%_%d.dat” instead of /%s%_3d.dat ?
its starting and stopping but without recording frames.
frames saved:0 frames lues:399 lost frames:1
it should be
“/%s_%03d.dat”
sorry
I have updated the gist with a little change
let me know
Tadaaaa !! The new panels
One moment i try it!missing/deleted image from Google+
@Stef_Weicks quoi looks good
Thanx … I like it too!
so i tried the code … unfortunately it doesn´t stop recording…
while(record==1){
or did you mean if instead of while?
and the second if(!new_record)
if(record==0)
also didnt work file 0k
@Stef_Weicks put back if(!new_record)
In the definition of new_record
Put
static bool new_record=true;
@Stef_Weicks on the fastledshowtask2 remove the comment of the serial.println
And look in th serial output
hm … I do not know if I understood you correctly.
i did static bool new_record=true;
put back record==1 … but if i let while(record==1){ it would never stop … or not? so i let it with while(record==1)
i uncommented //Serial.printf(“djdj\n”);
serial output:
djdj
Starting Artnet nbNeededUniverses:16
Ready to record…
Recording has started
Filename:/savedata_000.dat
Recording has started
Filename:/savedata_000.dat
Recording has started
Filename:/savedata_000.dat
didnt stop
@Stef_Weicks thé while should stop as soon as you put record to another value.
In the if the artnet.read();
Replace by
If(artnet.read()==0)
Serial.println(‘timeout’);
Show me the result
in line 207 i did instead of artnet.read();
If(artnet.read()==0)
Serial.println(‘timeout’);
no difference …recording didnt stop
@Stef_Weicks but in the Serial output no change ?