Skip to content

A simple Internet of Things (IoT) experiment, using a Genuino MKR1000 board to control 2 LEDs & monitor a potentiometer, via Blynk app.

Notifications You must be signed in to change notification settings

simplinnovation/Arduino_MKR1000_Blynk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

simplinnovation

Arduino MKR1000 & Blynk

A simple IoT (Internet of Things) experiment using Arduino/Genuino MKR1000 and Blynk. Watch the video below (click here) to see its action, then follow the instructions to build your own!

Video MKR1000 Blynk

1. What You Need 🎁

To build this project, you need the following items:

2. Setup Blynk App 📱

  • Open Blynk app, login then create a new project. Choose device: Arduino MKR1000 with connection type: WiFi. Click Create button & you will receive Blynk Auth Token by email.

  • On your project, add 2 button widget & a gauge. Set each widget as the picture below.

    Blynk App

3. Schematics 🔧🔨

  • Connect your parts to Arduino MKR1000 as the following picture:

    ArduinoMKR1000 Blynk schematics

4. Sketch 📋

  • First, extract Blynk library then copy it to C:\...\Documents\Arduino\libraries.

  • Open Arduino IDE then copy sketch below. Insert your WiFi SSID, WiFi password & Blynk Auth Token. Make sure you have chosen the right option for Board and Port under Tools menu. Upload it!

    #define BLYNK_PRINT SerialUSB
    #include <SPI.h>
    #include <WiFi101.h>
    #include <BlynkSimpleWiFiShield101.h>
    
    char auth[] = "Blynk_Auth_Token";
    char ssid[] = "Your_WiFi_Name";
    char pass[] = "Your_WiFi_Password";
    
    void setup(){
        SerialUSB.begin(9600);
        Blynk.begin(auth, ssid, pass);
    }
    
    void loop(){
        Blynk.run();
    }

5. Have Fun! 😎

  • After uploading done, make sure your Arduino MKR1000 & smartphone has a good internet connection. Click play button ▶️ on top right corner of your Blynk project, then you're ready to go! Have fun!

Lintang Wisesa 💌 [email protected]

Facebook | Twitter | Google+ | Youtube | :octocat: GitHub | Hackster

About

A simple Internet of Things (IoT) experiment, using a Genuino MKR1000 board to control 2 LEDs & monitor a potentiometer, via Blynk app.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages