FUNITEM- smartphone game auto click machine 스마트폰 오토 클릭 머신




<smartphone game auto click machine>


Arduino Source Code


char rly = 4;

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

void loop() {
  digitalWrite(rly, HIGH);
  delay(50);
  digitalWrite(rly, LOW);
  delay(50);
}

댓글 쓰기

0 댓글