blynkkk / blynk-sketch-generator

This repository is for generating Blynk sketches.
https://examples.blynk.cc
MIT License
25 stars 25 forks source link

#define BLYNK_PRINT Serial #include <SoftwareSerial.h> SoftwareSerial SwSerial(10, 11); // RX, TX #include <BlynkSimpleSerialBLE.h> #include <SoftwareSerial.h> // You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = "ff3e998214fd468d81222ec27c2b5f75"; SoftwareSerial SerialBLE(10, 11); // RX, TX void setup() { // Debug console Serial.begin(9600); SerialBLE.begin(9600); Blynk.begin(SerialBLE, auth); Serial.println("Waiting for connections..."); } void loop() { Blynk.run(); #80

Closed jaswinder247 closed 5 years ago