Skip to content

Added a delay(0) in while-loops

Compare
Choose a tag to compare
@wollewald wollewald released this 03 Nov 20:28
· 7 commits to master since this release
ae46459

To prevent trouble with ESP8266 boards I have changed:

while(adc.isBusy()){}

to

while(adc.isBusy()){ delay(0); }