Blair Wyatt
Blair Wyatt
Does running flash.setClock(50000000); before flash.begin(); solve your issues intensite?
This repo isn't really set up for you to download the github zip and import it as a library into Arduino. You just need to copy the PID_AutoTune_v0.h and PID_AutoTune_v0.cpp...
TLS/SSL is more application layer and not really related to the Ethernet library. If you are wanting TLS/SSL, you should use something like this client library - https://github.com/OPEnSLab-OSU/SSLClient
I can confirm that this happens in UDP and TCP land and the changes by @fredilarsen (as appropriate in the TCP side too) fix this. I was having frequent lockups...
It might be worthwhile to put this over at https://github.com/PaulStoffregen/Ethernet . @PaulStoffregen mentioned he no longer has write access to this repo and to flag issues on his "Fork" (considering...
Probably a bit late to the party, but this is due to the buffer size setting in Ethernet.h: ``` // Configure the maximum number of sockets to support. W5100 chips...
Not quite the same, but here's a trilateration solver in C++ https://github.com/Wayne82/Trilateration If compiling for Arduino you'll need these too: Eigen C++ - http://eigen.tuxfamily.org/index.php?title=Main_Page StandardCplusplus - https://github.com/maniacbug/StandardCplusplus
To be honest, there is always going to some form of blocking because of the networking tasks (for example if the network goes down it will wait for timeout, or...
It seems you are right. Looking at it another way: pulses_per_kwh = 1000 kwh_to_ws_conversion = 3600000; //Kilowatt hours to watt second (Joule) pulse_multiplier_ = kwh_to_ws_conversion / (standard_update_interval * pulses_per_kwh); //pulse_multiplier_...
Aha! It seems the association is kept between reboots/flashing on the ESP and I must have missed it the first time around. Doing a full erase of the ESP, now...