TinyCircuitsZachary Lee
Published © GPL3+

The Internet of Things: Getting Started with Blynk

If you have ever wondered how to get started in the IoT (Internet of Things) world, this is the tutorial for you!

BeginnerFull instructions provided1 hour1,529
The Internet of Things: Getting Started with Blynk

Things used in this project

Story

Read more

Code

Code snippet #5

Plain text
void myWeatherEvent()
{
  Blynk.virtualWrite(V1, temp); // sends temp data via pin V1
  Blynk.virtualWrite(V2, humidity); // sends humidity data via V2
  generateWeatherData(); // generate random data for this example
  SerialUSB.println("weather data updated!"); // notify user
}

Code snippet #6

Plain text
void myWindEvent()
{
  Blynk.virtualWrite(V3,windSpeed); sends wind data via V3
  generateWindData();
  SerialUSB.println("wind data updated!");
}

Blynk Timer Code Example

Arduino
Used with the Arduino IDE and the Blynk app to create a simple IoT Timer.
No preview (download only).

Blynk Widget Code Example

Arduino
Used with the Arduino IDE, Blynk app, and TinyCircuits hardware, this example shows a basic widget IoT example using Blynk.
No preview (download only).

Credits

TinyCircuits

TinyCircuits

33 projects • 24 followers
Zachary Lee

Zachary Lee

5 projects • 4 followers

Comments