minilab
Published © CC0

Using Unity to Make and Run UI to Arduino

Just drag and drop prefabs to make a PC user interface to Arduino, without coding in PC.

BeginnerProtip4,279
Using Unity to Make and Run UI to Arduino

Things used in this project

Story

Read more

Code

Hello

Arduino
communicates with a button in MiniLab: receives the start message and button-clicks, and send texts, colors and sounds.
#include <MiniLab.h>
String title = "Hello";

Push push(1);

void setup () {

  Serial.begin(9600);
  pinMode(13, OUTPUT);
}

void loop () {

  delay(100);

  if (Serial.available() == 0) return;
  int id = MiniLab.readInt();
  if (id == MiniLab.id_start) {
    if (!MiniLab.checkTitle(title)) return;

    return;
  }
  if (id == push.id) {

    int state = !digitalRead(13);
    digitalWrite(13, state);

    push.print(state ? "Hello" : "World");
    push.set(state ? yellow : cyan);
    MiniLab.beepSound();
    MiniLab.log("log() is useful for simple display or debugging");
  }
}

Credits

minilab
0 projects • 1 follower
Contact

Comments

Please log in or sign up to comment.