Skip to content

[Problem] ets Jan 8 2013,rst cause:4, boot mode:(3,7) #1328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
lhcavalcanti opened this issue Dec 30, 2015 · 76 comments
Closed

[Problem] ets Jan 8 2013,rst cause:4, boot mode:(3,7) #1328

lhcavalcanti opened this issue Dec 30, 2015 · 76 comments

Comments

@lhcavalcanti
Copy link

I tried to resolve the reseting problem with the previous issues here. But I already correct all the pins ( GPIO0 pulled up, GPIO15 pulled down, rst and ch_pc also pulled up) and the problem continues. So I checked the supply, but I'm using a lm1117 and the voltage provided its also correct.

Some issue before talked about disabling the watchdog ( ESP.wdtDisable();), I tested and the problem persists.

After the problem line appears:

wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld

Anyone knows what can I do to fix it?

@lhcavalcanti lhcavalcanti changed the title ets Jan 8 2013,rst cause:4, boot mode:(3,7) [Problem] ets Jan 8 2013,rst cause:4, boot mode:(3,7) Dec 30, 2015
@me-no-dev
Copy link
Collaborator

So how do you get to trigger that problem? Please post some code that triggers it. The issue as explained could not be understood.

@lhcavalcanti
Copy link
Author

Sorry.
I'm trying to use the WebClient example to send the temperature from my work space. So I just changed the value sent and the frequency of upload data.

The code is:

#include <ESP8266WiFi.h>

const char* ssid     = "------------------------";
const char* password = "-------------------";

const char* host = "data.sparkfun.com";
const char* streamId   = "G2NoXQalpKHjJ0ZvM7GL";
const char* privateKey = "----------------------------------";

void setup() {
  Serial.begin(115200);
  delay(10);
  // We start by connecting to a WiFi network
  //ESP.wdtDisable();
  Serial.println();
  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);

  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }

  Serial.println("");
  Serial.println("WiFi connected");  
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
}

int temp = 0;

void loop() {
  temp = analogRead(A0); // reading sensor
  temp = temp * 0.09765625; // costance (1/1024*100)


//  ++value;

  Serial.print("connecting to ");
  Serial.println(host);

  // Use WiFiClient class to create TCP connections
  WiFiClient client;
  const int httpPort = 80;
  if (!client.connect(host, httpPort)) {
    Serial.println("connection failed");
    return;
  }



  // We now create a URI for the request
  String url = "/input/";
  url += streamId;
  url += "?private_key=";
  url += privateKey;
  url += "&value=";
  url += temp;

  Serial.print("Requesting URL: ");
  Serial.println(url);

  // This will send the request to the server
  client.print(String("GET ") + url + " HTTP/1.1\r\n" +
               "Host: " + host + "\r\n" + 
               "Connection: close\r\n\r\n");
  delay(10);

  // Read all the lines of the reply from server and print them to Serial
  while(client.available()){
    String line = client.readStringUntil('\r');
    // Serial.print(line); // Not using this message yet 
  }
  Serial.println("time");
  delay(20000); // Just send every 20 seconds
  Serial.println("closing connection");
  Serial.println();
}

@demandajmenso
Copy link

Check this out maybe we have the same issue.
#1342

@demandajmenso
Copy link

Also I have added a large capacitor (470uF) across the Vcc and Gnd rails

@TwatBurglar
Copy link

OP, did you find a solution for this? wdt_disable() DOES NOT WORK, but it DOES seem to feed the watchdog. 8 seconds after wdt_disable(), watchdog will always time out.

@pratikmokashi
Copy link

having same problem
wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x0f
csum 0x0f
~ld

@stsrc
Copy link

stsrc commented Apr 27, 2016

Be sure that your power supply is strong and stable enough. To get it working with stm32f0discovery board I had to get:

  • an external voltage source (12V, 1A max),
  • voltage stabilizer to 5V (radiator may be required),
  • voltage stabilizer to 3V3,
  • 2200uF(?!) electrolytic capacitor on 3V3, as close as possible to esp8266 power supply pin.
    This capacitor may be way to big, but I am only prototyping and want things to work.
  • 100nF ceramic capacitor as close as possible to esp8266 power supply pin.

and it finally worked.

  • Note about my circuit - power section was located on prototyping board, while esp8266 was connected through 20cm wires.
  • Note about stabilizers - also connect to them some capacitors as their datasheets say.
  • Note about big capacitor - esp8266 may work with smaller capacitor, just test it. Electrolytic capacitor should have low impedance.

@Captayne
Copy link

I have the same problem, and can't get rid of it. I am close to throw all ESP8266 away and go for another IoT system on chip.
I can't get this running stable: https://github.com/cnlohr/esp8266ws2812i2s
I use a PC power supply with 3.3V capable to drive 25A. Also added some ceramic capacitors to VCC and 3.3V directly on the pins of the Nodemcu accumulating now in up to ~3700µF.
From time to time (~~ every 20 minutes ) the chip resets with the following serial output:
ets Jan 8 2013,rst cause:4, boot mode:(3,7)
wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x0f
csum 0x0f
~ld

I feel soo helpless now, because everything else works fine. Meanwhile i Have also added some other hadware and software featrues and made a new website to control pumps for a bar mixing app.
Is there anything else to debug and look deeper?
Maybe there really is a bug in the Fastled Library or any other lib used in the example?
I use Arduino 1.6.5.

Thanks for any hints.
Andreas

@krzychb
Copy link
Contributor

krzychb commented May 28, 2016

@Captayne

Do you have issue with application from https://github.com/cnlohr/esp8266ws2812i2s or "Fastled Library" from https://github.com/FastLED/FastLED?

@Captayne
Copy link

Captayne commented May 28, 2016

Actually, I don't know. I just experience the crashes. If someone can give me a hint, to track down the reboots, I would be more than lucky.

Andreas/Captayne

----- Ursprüngliche Nachricht -----
Von: "Krzysztof" notifications@github.com
Gesendet: ‎28.‎05.‎2016 19:59
An: "esp8266/Arduino" Arduino@noreply.github.com
Cc: "Captayne" a.keibel@systragon.de; "Mention" mention@noreply.github.com
Betreff: Re: [esp8266/Arduino] [Problem] ets Jan 8 2013,rst cause:4, boot mode:(3,7) (#1328)

@Captayne

Do you have issue with application from https://github.com/cnlohr/esp8266ws2812i2s or "Fastled Library" from https://github.com/FastLED/FastLED?


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#1328 (comment)

@Captayne
Copy link

I now have changed the power supply to another PC power supply, with lots of amps on 3.3V. But reboots still occur occassionally. Always this shows up in the usb serial monitor:
ets Jan 8 2013,rst cause:4, boot mode:(3,7)
wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x0f
csum 0x0f
~ld

What does room 16 mean?
The websocket error event results in #1006. (quite clear.)

Of cause I can reconnect easily from JScript, but this in not a honest solution.

Any idea? Can the code be buggy, resulting in such an error? If the code is buggy, then the beaviour should be little more deterministic and not with crashes from time to time. Website and ESP do communicate in 10Hz frequency. all works fine without any overlap until the ESP crashes.
I have swapped the NodeMCU Devboard with 5 others without any change. I put it from my PCB design back into the protoyping board with no change in behaviour.
Has somebody similiar problems?
Is there a possiblity to ad more detailed output on what the system crashes? Memory leak/ Nullpointer assignement/ memory read error / invalid instruction/ page error (I think rather not, as there is no paging).... ?
uh!?
Any hints?
Thank you soo much.

@krzychb
Copy link
Contributor

krzychb commented May 29, 2016

@Captayne,

  1. If not done already, you may check recommendations here
  2. To verify if watchdog timer resets may be caused by your application, I would load one of example sketches that is using WiFi, e.g. WiFiWebServer.ino and leave it running for couple of hours.

Krzysztof

@akashdeep3194
Copy link

I was facing this problem and it was fixed by changing Tools>Upload Speed to 115200.
And Flash Size to 4M(3M SPIFFS).

@hadipic
Copy link

hadipic commented Sep 3, 2016

eset ets Jan 8 2013,rst cause:4, boot
eset ets Jan 8 2013,rst cause:2, boot

add this code slove problem all reset
ets_intr_lock(15); // all intruptt off
ets_wdt_disable();

@jumpjack
Copy link

jumpjack commented Oct 5, 2016

I have same issue.
How can I specifically add ESP-07 to boards available on Arduino IDE?

@jumpjack
Copy link

jumpjack commented Oct 5, 2016

I'm using this setup:
image
http://ediy.com.my/blog/item/133-upload-sketch-to-the-esp8266-esp-07-esp-12-using-arduino-ide

@lagunacomputer
Copy link

lagunacomputer commented Nov 4, 2016

was able to fix this by changing the Digital Pin Assignment of my onewire device to D4, and my DHT sensor pin assignment to D6. it did not like the previous pin assignments. nodemcu v1.0

@RubenVot
Copy link

I had same problem and same message. I was trying to set the D8 to INPUT.
Changed to 0, everything ok now :)

@cesarcardinali
Copy link

Guyyyyyyys! Problem solved!
Connect an external power source to Arduino and it should work just fine!
I plugged an 9v 1A and at same moment it came to work!

@isaiasmoioso
Copy link

@cesarcardinali I"m not sure i follow. Did you mean you plugged in an external power source to your esp8266 to get it to work?

@RubenVot
Copy link

Sometimes cheap power sources can make that arduino behaves in an erratic mode.

@cesarcardinali
Copy link

@isaiasmoioso Exactly! Buy an external power source capable of 1000mA and it should work just fine.
I am using it connected to my Arduino and an external power source. Problem solved.

@macmeck
Copy link

macmeck commented Feb 11, 2017

I was having the same issue while my power supply was just fine. Solved it by using a different USB to Serial adapter. FTDI adapters brought up this issue (while also making trouble during programming from time to time) whereas I had no issues using a CP2102 adapter. You might want to give this a try...

@gojimmypi
Copy link
Contributor

fwiw - I found this thread while searching for the cause of my continual ESP8266 reboots - the "rst cause:2, boot mode:(3,7)" messages out the serial port at 74880 baud - followed by repeated diagnostics, only to repeat.

My issue, is that I believe my programming method was forcing in corrupted code into the ESP8266.

The solution for me? Hold down the "Flash button" while programming. Previously I had been using VisualMicro to program the NodeMCU via the UART. (the UART handles the flash control automagically) I knew I had a good device, as I could successfully program it via the UART. However I wanted to use a JTAG debugger such as the Segger or Olimex with VisualGDB - but could never get it to work with the NodeMCU. (I spent a ridiculous amount of time before I found this solution).

While googling, I came across this: https://nodemcu.readthedocs.io/en/master/en/flash/#putting-device-into-flash-mode I had never needed to press the flash button, as the USB connection would do that for me automatically. But with JTAG I no longer had this luxury! Note that the flash button needs to be held down before power is applied to the ESP8266.

Hopefully this will help someone else & save you a few hours...

@lagunacomputer
Copy link

lol 74880, what was that like the insta-obsolete V.32fast? lol anyway i gotta tell you, i have bought about 10 nodemcu's from ebay, and it seems half were 'legit' and the other half we cheap knockoffs that did not do so well in the 'serial communication' and overall 'works great' departments. Some would work fine with the arduino 1.6x IDE and a standard stupid usb cable, others would just fight me to load a firmware. I think the cheapie chinese knock offs are a problem. The only way i could visually disingush between the two, the 'print' on the big ESP8266 chip on the fake NodeMCU's from ebay was visually rough and 'falling off'. Check yours, do you have the same cheap paint on your ESP8266 chip on your NodeMCU?

@lagunacomputer
Copy link

and YES YOU MUST SUPPLY EXTERNAL POWER if you want to run anything other than a LED off of the pins of a NodeMCU

@Captayne
Copy link

Captayne commented Mar 16, 2017

Guys, after almost a year of doing nothing on my project, which came from little demotivation, and speculating about errorfixing in the IDE and libraries by others, ...
... NOW really time seems to have worked for me.
I upgraded from Arduino 1.6.5 to 1.8.1 and compilied and flashed again. Everything in the Dev-Environment and libraries were upgraded.
AND ....

Tadaaa! No reboots occour anymore!

WebSocket connection remains stable, and the ESP runns like hell for the first hours .
Yiiippiii!

@ivm164
Copy link

ivm164 commented Oct 18, 2018

I've got resets when trying to use quite large local array. In my case it was bool a[150][150]. IDE doesn't produce any warning during compilation in this case. When I made that array global I've got the warning on possible instability due to low memory but in the end there were no real problems and at least I know now what I should optimize to make things better.

@dehuy69
Copy link

dehuy69 commented Nov 7, 2018

Try:
In Arduino IDE Tools >> Erase Flash >> All flash content
recompile and upload

@frustrat01
Copy link

frustrat01 commented Dec 8, 2018

Having some issues with the ESP8266-01 by uploading the sensor data to the localhost.

The below shows the issues when I open the Serial Monitor in the Arduino

` ets Jan 8 2013,rst cause:4, boot mode:(1,0)

wdt reset
`
By the way, I have tried using the WiFiClient example to upload the dummy data to the localhost and it works. But it cannot work with uploading the sensor to the localhost.
Anyone has solution please help me to get rid of this issue ASAP

@lagunacomputer
Copy link

lagunacomputer commented Dec 8, 2018 via email

@frustrat01
Copy link

frustrat01 commented Dec 8, 2018

@lagunacomputer Can you give the example for this because I still new to this Arduino and ESP8266-01.

@lagunacomputer
Copy link

lagunacomputer commented Dec 8, 2018 via email

@KiLLAAA
Copy link

KiLLAAA commented Jan 10, 2019

Hello everyone, the wdt reset is caused by entering infinite loop!

Entering infinite loop(while) will trigger reset in a second, the reason is that the loop is blocking and esp8266 needs to keep WiFi connected and lots of other background things running.
Solution recommended by @daekonn ESP.wdtDisable(); only disables software watchdog, the hardware one will trigger in ~6seconds, resulting in -> rst cause:4
Solution is to FEED the watchdog!
Solution no.1: ESP.wdtFeed(); // feeds the dog
Solution no.2: system_soft_wdt_feed(); // same as no.1
Solution no.3: yield(); // implemented in esp8266 libraries
Solution no.4: delay(1); // yeah, really

example:
while(1) {ESP.wdtFeed();};

@devimeruva
Copy link

17:34:15.107 ->
17:34:15.107 -> ets Jan 8 2013,rst cause:4, boot mode:(1,6)
17:34:15.107 ->
17:34:15.107 -> wdt reset

this is being displayed on my COM port instead of showing IP Address. How can i resolve this issue?

@lagunacomputer
Copy link

lagunacomputer commented Jan 22, 2019 via email

@lrmoreno007
Copy link
Contributor

lrmoreno007 commented Jan 22, 2019

@KiLLAAA
Copy link

KiLLAAA commented Jan 24, 2019

@devimeruva post code?

@devimeruva
Copy link

devimeruva commented Jan 24, 2019 via email

@devimeruva
Copy link

#include <ESP8266WiFi.h>
#include <LiquidCrystal.h>
#include <EmonLib.h>
EnergyMonitor emon1; // Create an instance
LiquidCrystal lcd(12,11,5,4,3,2);

const char* ssid = "Zunik Energies Pvt Ltd";
const char* password = "zunik1234";
WiFiServer server(80);

void setup() {
Serial.begin(9600);
Serial.setDebugOutput(true);
lcd.begin(20,4);
emon1.voltage(2,2313.26,1.7);
emon1.current(1,58.1);
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.write(13);
server.begin();
Serial.println(WiFi.localIP());
}

void loop() {
WiFiClient client = server.available();
if (!client) {
return;
}
Serial.println("new client");
while(!client.available())
{
delay(1);
}
emon1.calcVI(20,2000);
emon1.serialprint();
unsigned int long timemillis = millis();
unsigned int long time = millis();
float realPower = emon1.realPower;
float apparentPower = emon1.apparentPower;
float supplyVoltage = emon1.Vrms;
float Irms = emon1.Irms;
float powerFactor = (realPower/ apparentPower);
lcd.setCursor(4,0);
lcd.print ("EnergyMonitor");
lcd.setCursor(0,1);
lcd.print("V = ");
lcd.print (supplyVoltage);
lcd.setCursor(9,1);
lcd.print("I = ");
lcd.print(Irms);
lcd.setCursor(0,2);
lcd.print("Powerfactor = ");
lcd.print(powerFactor);
lcd.setCursor(0,3);
lcd.print("Units(kWh) = ");
lcd.print(abs(realPowertime)/abs(10003600));
String web = "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n";
web += "\r\n";
web += "\r\n";
web += "

ENERGY MONITOR

\r\n";
web += "

\r\n";
web += "V=\r\n";
web += Serial.print(supplyVoltage);
web += "I=\r\n";
web += Serial.print(Irms);
web += "Powerfactor =\r\n";
web += Serial.print(powerFactor);
web += "Units(kWh) = \r\n";
web += Serial.print((realPowertime)/abs(10003600));

web += "\r\n";
web += "\r\n";

client.print(web);
}

@lrmoreno007
Copy link
Contributor

lrmoreno007 commented Jan 24, 2019

The problem are in the the Third Party library EmonLib ---> https://github.com/openenergymonitor/EmonLib/blob/master/EmonLib.cpp

It's not fixed for ESP8266. There are a while(1) and if you read the docs and what was discussed in this issue, then you must know what to do.

@KiLLAAA
Copy link

KiLLAAA commented Jan 24, 2019

@devimeruva the problem is that you need to use proper (ported) library for esp8266..
also.. the sketch seems that it will not likely do what you would expect..
library here..
inspiration there..

@DamienAR
Copy link

Hi ! I don't know if someone will see my message but, I had the same error and I think I found my problem.
I work on an ESP8266 NodeMCU DevKit V1 and I noticed, when I want tu use the function millis(), my ESP reset.

@ngonhatduy
Copy link

Try:
In Arduino IDE Tools >> Erase Flash >> All flash content
recompile and upload

Thanks you so much for your help!!

@radhey04ec
Copy link

I have solved it !!,
Please try to comment all pin you used in programming and it's related function )like pinMode , digitalWrite etc.

  • Again save and upload it
  • check the serial monitor
  • if you not getting error that means this is because of pin declaration
  • to solve this issue : dont use #define declaration for initialize pin.
    -Direct use pin in pinMode definition and read /write function
  • Use GPIO no in if you are doing it in ARDUINO IDE

May be helpfull

Thanks :
Jaydeep Shah
E-mail : radhey04ec@gmail.com

@pkarun
Copy link

pkarun commented Oct 3, 2019

I have this issue:

I assigned all Nodemcu pins with D5, D6 etc.. like that in code but for one pin I assigned 1 (GPIO1, for nodemcu TX pin). I changed that Pin to D3 and program started working fine for me.

@paulodrugos
Copy link

paulodrugos commented Oct 9, 2019

Thanks @rashey04ec !! The trick was to use GPIO number, like in this image: https://alselectro.files.wordpress.com/2017/10/nodemcu_pins1_thumb.jpg?w=517&h=441
I'm using the D6 pin, but in arduino IDE I should declare as pin 12

@javimata
Copy link

i solved change it the pin, i was 7 and 8 and change it to 2 and 4 and word fine

@jaindinkar
Copy link

jaindinkar commented Jul 16, 2020

I solved the restarting problem by attaching a big 2200uF capacitor close to the ESP Module, I think the cheap power supplies don't have a fast transient response to sudden peaks, certain functions require a high peak current for a very short time. In my case, I was using this cheap power supply module I bought from Aliexpress which I think was the culprit I compensated for the problem by using a big cap.

Below is the error code that was repeating again and again after each restart.

ets Jan 8 2013,rst cause:4, boot mode:(3,4)
wdt reset
load 0x40100000, len 2592, room 16
tail 0
chksum 0xf3
load 0x3ffe8000, len 764, room 8
tail 4
chksum 0x92
load 0x3ffe82fc, len 676, room 4
tail 0
chksum 0x22
csum 0x22

2nd boot version : 1.7(5d6f877)
SPI Speed : 40MHz
SPI Mode : QIO
SPI Flash Size & Map: 8Mbit(512KB+512KB)
jump to run user1 @ 1000

correct flash map
œbd[02];ûg[0F]lph„ã[03]ì[13]ƒgäÛsƒò'|ì[0C]„lÇxsd[1C]c“[1B][03][0C]Ÿ<[03]s›[03]dœgà[0C]‚'ã[00][0C]d[02]Äãr›$Œd[13]Œ[04][0C][04]$[03]ŒãsÛlä$[1B]„[0C][0C][04]l [03]Œã{“l[04]‡Ÿ[00]Ä[0C][04]ll[03]{l�‚{lŒŸâ„c[04]ì„cŒb‡#|“ì„ì“c[12]#äònç€[13]ngã[10][03][0C][03]ldàã[02]„Ä[0C]„[0C]Œ[04][0C]dć[1F]ŒŒÇ[1F]€[0C]Ž[07]lÀ[03]oü[00]„ŸãŒc[0C]dll�‡[1B][04]c[04][03][03]„ŸãŒc[0C]d[0C]Œb[1C]{lsd
ready

@bramvreugd
Copy link

I solved it by specifying a different flash size.

@tecPhoenix
Copy link

Hello everyone, the wdt reset is caused by entering infinite loop!

Entering infinite loop(while) will trigger reset in a second, the reason is that the loop is blocking and esp8266 needs to keep WiFi connected and lots of other background things running.
Solution recommended by @daekonn ESP.wdtDisable(); only disables software watchdog, the hardware one will trigger in ~6seconds, resulting in -> rst cause:4
Solution is to FEED the watchdog!
Solution no.1: ESP.wdtFeed(); // feeds the dog
Solution no.2: system_soft_wdt_feed(); // same as no.1
Solution no.3: yield(); // implemented in esp8266 libraries
Solution no.4: delay(1); // yeah, really

example:
while(1) {ESP.wdtFeed();};

Damn, delay(1) in void loop does the trick.
Without it, it will crash after about 5min to 2h.

Thank you sir!

@ThiagoRabeloFraga
Copy link

Hello everyone, the wdt reset is caused by entering infinite loop!

Entering infinite loop(while) will trigger reset in a second, the reason is that the loop is blocking and esp8266 needs to keep WiFi connected and lots of other background things running.
Solution recommended by @daekonn ESP.wdtDisable(); only disables software watchdog, the hardware one will trigger in ~6seconds, resulting in -> rst cause:4
Solution is to FEED the watchdog!
Solution no.1: ESP.wdtFeed(); // feeds the dog
Solution no.2: system_soft_wdt_feed(); // same as no.1
Solution no.3: yield(); // implemented in esp8266 libraries
Solution no.4: delay(1); // yeah, really

example:
while(1) {ESP.wdtFeed();};

I solved the problem verifying my setup function. If any line is crashing inside setup function, your watchdog will crash too.

@poorali
Copy link

poorali commented Jul 8, 2021

Try:
In Arduino IDE Tools >> Erase Flash >> All flash content
recompile and upload

Hi.
i was trying to use serial monitor with wifi ap mode and that caused wdt reset for me.
your soloution worked for me and problem fixed.
thank you <3.

@daviewales
Copy link

I found this note in the docs, and I think this was the problem for me:

Digital pins 6—11 are not shown on this diagram because they are used to connect flash memory chip on most modules. Trying to use these pins as IOs will likely cause the program to crash.

https://arduino-esp8266.readthedocs.io/en/latest/reference.html#digital-io

I changed my pin definition to use int pin = D11; instead of int pin = 11;, and it worked.

@ehabtawfikelbwab
Copy link

It solved for me guys by putting delay in the loop function
range between delay(1); to delay(50);
I did use delay(50);

Good luck!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests