Light sensitive resistor Module

Light sensitive resistor Module
Euro 1.95 *Prices include VAT
Article codeARD157
Light sensitive resistor Module. Suitable for Arduino or other microcontrollers.
Op voorraad / on stock
Light sensitive resistor Module. Suitable for Arduino or other microcontrollers.

Example code:

int sensorPin = A5;    // select the input pin for the potentiometer

int ledPin = 13;      // select the pin for the LED

int sensorValue = 0;  // variable to store the value coming from the sensor


void setup() {

pinMode(ledPin, OUTPUT);

 Serial.begin(9600);

}


void loop() {


 sensorValue = analogRead(sensorPin);    

 digitalWrite(ledPin, HIGH);  

delay(sensorValue);          

 digitalWrite(ledPin, LOW);  

delay(sensorValue);

Serial.println(sensorValue, DEC);  

}