Texas Target

Ce stand de tir réagit à la lumière qui rentre dans la boite par les petits trous une fois que l’on dégomme les cibles (comme ci dessous).

Une cible tombe, la LED clignote une fois.
Deux cibles au sol et la LED clignote deux fois
Les trois cibles touchées et la led reste allumé.
fire 

TEXAS TARGET from Studio Objet Augmente on Vimeo.

int led = 9;
int A0Value = 0;

void setup() {
pinMode(led, OUTPUT);
pinMode(A0, INPUT);
Serial.begin(9600);
}

void loop() {
A0Value = analogRead(A0);
A0Value = map(A0Value, 0, 1024, 0, 255);

Serial.print(« A0Value = »);
Serial.print(A0Value);
Serial.print(« \t »);

if (A0Value == 0){
digitalWrite(led, LOW);
delay(1000);
}

if (A0Value > 10 && A0Value < 15){
digitalWrite(led, HIGH);
delay(200);
digitalWrite(led, LOW);
delay(1000);
}

if (A0Value > 16 && A0Value < 60){
digitalWrite(led, HIGH);
delay(200);
digitalWrite(led, LOW);
delay(200);
digitalWrite(led, HIGH);
delay(200);
digitalWrite(led, LOW);
delay(1000);
}

if (A0Value > 61 && A0Value < 255){
digitalWrite(led, HIGH);
}

delay(10);
}