Super Kid
Published © GPL3+

Break your heart - Arduino - VirtualShield: Hello World

This project uses Virtual Shield for Arduino.

BeginnerProtip7,012
Break your heart - Arduino - VirtualShield: Hello World

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Microsoft Windows 10 PC
×1
Microsoft Windows Phone
×1
SparkFun Bluetooth Modem - BlueSMiRF Silver
SparkFun Bluetooth Modem - BlueSMiRF Silver
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE
Microsoft VirtualShield for Arduino

Story

Read more

Code

VirtualShield code

Arduino
#include <ArduinoJson.h>
#include <VirtualShield.h>
#include <Text.h>
VirtualShield shield;
Text screen = Text(shield);
void setup()
{
  shield.setOnRefresh(refresh);
  shield.begin();
}
void refresh(ShieldEvent* event)
{
  screen.clear();
  screen.print("Hello World");
}
void loop()
{
  shield.checkSensors();
}

Credits

Super Kid

Super Kid

1 project • 26 followers
I am building the project with IoT with Windows (Windows On Devices). Also I have a tag: Break your heart for the beginner.

Comments