Теряет связь или ребутится при работе с ик-приемником lost connection or reboot with Ir receiver


[49978] Connected to WiFi
[49978] IP: 192.168.3.231
[49979] Blynk v0.3.8 on ESP8266
[49979] Connecting to blynk-cloud.com:8442
[50211] Ready (ping: 100ms).
3251666944 led is low = 3251666944

Exception (0):
epc1=0x40205428 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000000 depc=0x00000000

ctx: sys 
sp: 3ffffc90 end: 3fffffb0 offset: 01a0

>>>stack>>>
3ffffe30:  401043aa 00000030 00000000 ffffffff  
3ffffe40:  4000438f 00000030 00000019 ffffffff  
3ffffe50:  60000200 00000001 00022d00 80000000  
3ffffe60:  20000000 3fff1120 80000000 2007c2a0  
3ffffe70:  00000000 3feffe00 fc70ffff 3fff1124  
3ffffe80:  00000054 0007c2a0 3ffe91b0 00000030  
3ffffe90:  3fffc278 40102af0 3fffc200 00000022  
3ffffea0:  3ffffeb0 40205428 3fffc258 4000050c  
3ffffeb0:  40000f68 00000030 0000001e ffffffff  
3ffffec0:  40000f58 00000000 00000020 00000000  
3ffffed0:  3ffe9880 c162cf54 3ff20a00 c0000000  
3ffffee0:  00003000 00000000 0000001c 3fffdab0  
3ffffef0:  00000000 3fffdcc0 3ffe92b8 00000030  
3fffff00:  ffffffff 00000000 3ffe92c1 00000008  
3fffff10:  40207592 3ffeca48 00000000 3fffdc00  
3fffff20:  3ffed510 0000003c 40101bbf 3ffeca48  
3fffff30:  00000000 400042db 00000000 3ffe91b0  
3fffff40:  40004b31 3fff0e84 000002f4 0007c000  
3fffff50:  40105aca 00001311 3ffed410 4010757c  
3fffff60:  4020967d 3ffed410 00001311 3fffdcc0  
3fffff70:  3fff0e84 00001000 40209aef 000000b2  
3fffff80:  4020a367 4020a43e 60000600 3ffed410  
3fffff90:  3fffdcc0 00000000 40000f65 3fffdab0  
3fffffa0:  00000000 00002121 3fffdab0 40000f49  
<<<stack<<<
J9Cю7!aSК

мой скетч через arduino ide (esp-07)
my sketch with arduino ide (esp-07)

/*
 * IRremoteESP8266: IRrecvDemo - demonstrates receiving IR codes with IRrecv
 * An IR detector/demodulator must be connected to the input RECV_PIN.
 * Version 0.1 Sept, 2015
 * Based on Ken Shirriff's IrsendDemo Version 0.1 July, 2009, Copyright 2009 Ken Shirriff, http://arcfn.com
 */
 #define BLYNK_PRINT Serial    // Comment this out to disable prints and save space
#include <ESP8266WiFi.h> 
#include <BlynkSimpleEsp8266.h> 
#include <IRremoteESP8266.h> 


int RECV_PIN = 12; //an IR detector/demodulatord is connected to GPIO pin 2
IRrecv irrecv(RECV_PIN);
decode_results results;
char auth[] = "cf6cc84140ee415097daecbf5efb2387";
 WidgetLED led1(V1); 
WidgetLCD lcd(V10); 


void setup()
{
  Serial.begin(9600);
  Serial.print(" *begin* ");
  Blynk.begin(auth, "niblernet2G", "hackwork"); 
  irrecv.enableIRIn(); // Start the receiver
}
void loop() {
  Blynk.run(); 
  if (irrecv.decode(&results)) {
    Serial.print(results.value);
    
    lcd.print(0, 0, results.value); 
    if  (results.value==3251666952) /*or (results.value==C1D08008))*/
    {
      led1.on(); Serial.print(" led is high");
      } else
      {
        led1.off(); Serial.print(" led is low");
        }
    Serial.print(" = ");
    Serial.println(results.value, DEC);
    irrecv.resume(); // Receive the next value
  }
  delay(100);
}

  1. Use English, please
  2. Code snippet should be formatted. Edit your post

Wrap the code by adding 3 Backtick: ``` symbols:

Example:

 ``` cpp <--put 3 backticks BEFORE your code starts  (cpp means C++ language) 

   //Put your code here
   //..................
   //..................

 ``` <--insert 3 backticks AFTER your code

**This makes your code readable and with highlighted syntax, like this:**
//comment goes here 
void helloWorld() { 
   String message =  "hello" + "world"; 
}