HomeMadeGarbage
Published

Playing Smartphone Games with a Relay Touch Board

I played smartphone games with a relay touch board.

BeginnerShowcase (no instructions)30 minutes8,619
Playing Smartphone Games with a Relay Touch Board

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Relay touch board with driver
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Constitution

Code

pinipuni.ino

Arduino
#define EN A0

void setup() {
  pinMode(EN, OUTPUT);
}


void loop() {
  digitalWrite(EN, HIGH);
  delay(25);
  digitalWrite(EN, LOW);
  delay(25);
}

Credits

HomeMadeGarbage
56 projects • 288 followers
We are family. hobby is D.I.Y!!
Contact

Comments

Please log in or sign up to comment.