dimanche 27 mai 2018

Smart Lighting using Arduino and a Photocell



le Code :

int sensorPin = 0 ;
int lightPin = 2 ;

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

void loop() {
int sensorValue = analogRead(sensorPin);

if (sensorValue < 10){
// on peut changer le nombre 10 avec un autre nombre
  digitalWrite(lightPin, HIGH);
}
else{
  digitalWrite(lightPin, LOW);
}
}


Aucun commentaire:

Enregistrer un commentaire