Matt Jani
Published © GPL3+

LattePanda + Blynk = IoT Fun!

Use a LattePanda and Blynk to make a simple but cool IoT control unit.

BeginnerProtip2 hours2,321
LattePanda + Blynk = IoT Fun!

Things used in this project

Hardware components

DFRobot LattePanda
×1
LED (generic)
LED (generic)
×1
Breadboard (generic)
Breadboard (generic)
×1

Software apps and online services

Blynk
Blynk

Story

Read more

Code

Blink an LED with Blynk

C/C++
Simple blinking LED example with Blynk
#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();
 }

Credits

Matt Jani

Matt Jani

3 projects • 5 followers
tech head, tinkerer, robo-wrangler

Comments