Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/H0meMadeGarbage/playing-smartphone-games-with-a-relay-touch-board-4713c7/embed' width='350'></iframe>
I played smartphone games with a relay touch board.
Read up about this project on
I played the smartphone game "punipuni" with a relay touch board. By turning the relay switch on the smartphone screen, high speed tap is realized.
#define EN A0 void setup() { pinMode(EN, OUTPUT); } void loop() { digitalWrite(EN, HIGH); delay(25); digitalWrite(EN, LOW); delay(25); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.