-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Hi,
Brilliant libary!
I had big problems with stuttering output at the beginning.
Especially when many WebSerial.println came in a row in the skipt:
WebSerial.print ("Measurement_count: );
WebSerial.println (Measurement_count);
WebSerial.print ("Unix-Time: ");
WebSerial.println (now);
WebSerial.print ("Records in cache: );
WebSerial.println (queue.size());
After replacing this with the following, it worked better:
snprintf(printbuffer, sizeof(printbuffer), "Measurement_count: %i \nUnix-Time: %ld \nRecords in cache: %i", Measurement_count, now, queue.size());
WebSerial.println(printbuffer);
Also, I think it is very important to make an adjustment to the AsyncTCP:
me-no-dev/AsyncTCP#121
Without this change it kept crashing every few hours.
Metadata
Metadata
Assignees
Labels
No labels