YUGUO
Published

One metre from me! - Wio Terminal

If you are unhappy you can use it, it will tell anyone within one meter of you "Leave me ALone!"

BeginnerProtip1 hour39
One metre from me! - Wio Terminal

Things used in this project

Hardware components

Wio Terminal
Seeed Studio Wio Terminal
×1
Grove - Ultrasonic Ranger
Seeed Studio Grove - Ultrasonic Ranger
×1

Software apps and online services

Code Croft

Story

Read more

Code

One metre from me!

C/C++
#include <Ultrasonic.h>
#include"TFT_eSPI.h"

Ultrasonic ult(0);
TFT_eSPI tft;

void setup(){
  tft.begin();

}



void loop(){

  if (((long)ult.MeasureInCentimeters() < 100)) {
    tft.setRotation(3);
    tft.fillScreen(0xF800);
    tft.setTextSize(3);
    tft.drawString((String)"LEAVE ME ALONE!!!", 5, 90);
    delay(1000);
  } else {
    tft.setRotation(3);
    tft.fillScreen(0x7E4);
    tft.setTextSize(3);
    tft.drawString((String)"NICE TO SEE YOU !!!", 5, 90);
    delay(1000);
  }

}

Credits

YUGUO
1 project • 0 followers

Comments