Playing Smartphone Games with a Relay Touch Board
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.
目次
Configuration
Parts
- Microcomputer Arduino uno
- Relay Touch Board
Relay Touch Board
As for the above circuit, the configuration is simple structure just to ground or open the contact surface in a relay.
Experiment with aluminum foil
It was realized tap operation even if you connect the aluminum foil to the gnd of the Arduino in the smartphone to try WW
Arduino IDE Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#define EN A0 void Setup () { Pinmode (EN, OUTPUT); } void Loop () { //Relay on/off for every 25msec Digitalwrite (EN, HIGH); Delay (25); Digitalwrite (EN, LOW); Delay (25); } |