#include <SoftwareSerial.h>
SoftwareSerial DebugSerial(2, 3);
#define BLYNK_PRINT DebugSerial
#include <BlynkSimpleStream.h>
char auth[] = "YourAuthToken";//Put your Auth Token here
void setup()
{
DebugSerial.begin(9600);
Blynk.begin(Serial, auth);
}
void loop()
{
Blynk.run();
}