Hi
I am tring to receive serial data with EDGENT_ESP8266.
but as i submit any serial data return response is
"Command Not Found"
here is my code
// Fill-in information from your Blynk Template here
#define BLYNK_TEMPLATE_ID "TMPL2404q1Gp"
#define BLYNK_DEVICE_NAME "MYENERGY"
#define BLYNK_FIRMWARE_VERSION "0.1.0"
#define BLYNK_PRINT Serial
//#define BLYNK_DEBUG
#define APP_DEBUG
// Uncomment your board, or configure a custom board in Settings.h
//#define USE_SPARKFUN_BLYNK_BOARD
#define USE_NODE_MCU_BOARD
//#define USE_WITTY_CLOUD_BOARD
//#define USE_WEMOS_D1_MINI
#include "BlynkEdgent.h"
void setup()
{
Serial.begin(115200);
delay(100);
BlynkEdgent.begin();
}
void loop() {
BlynkEdgent.run();
if(Serial.available() >0){
char c = Serial.read();
Serial.print("data");
Serial.println(c);
}
delay(1000);
Serial.println("loop");
}
Where i am making mistake