Rafa Juárez
Published © CC0

Introduction to the Blynk IoT service update

How easy is to do the link between my Arduino Yun and one mobile using free soft Blynk.

BeginnerProtip2 hours4,137
Introduction to the Blynk IoT service update

Things used in this project

Hardware components

Arduino Yun
Arduino Yun
×1

Software apps and online services

Arduino IDE
Arduino IDE
Blynk
Blynk

Story

Read more

Custom parts and enclosures

Blink and arduino (Direct print in pdf from the Blink Web)

Code

ARDUINO YUN PROGRAM

Arduino
This is the simplest sketch to do YUN linked to Blynk
#include <Bridge.h>
#include <YunClient.h>
#include <YunServer.h>
#include <BlynkSimpleYun.h>

char auth[] = "ac6a22df6bf24497a34a2ba9b2ee566e";

void setup(void) {
    Blynk.begin(auth);

    // Other setup here
}

void loop(void) {
    // Do your sketch stuff here
    
    Blynk.run();
}

Credits

Rafa Juárez

Rafa Juárez

18 projects • 39 followers
Very interested in prototyping of new ideas. 30 years experience in electronics.

Comments