Axiometa
Light Dependent Resistor
Light Dependent Resistor
SKU:AX22-0005
Low stock: 5 left
Regular price
$2.49
Regular price
$1.00
Sale price
$2.49
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability

Technical Details
Pinout
Arduino Example Snippet
#define LDR_PIN 1
void setup() {
Serial.begin(9600);
}
void loop() {
int ldrValue = analogRead(LDR_PIN);
Serial.print("LDR Value: ");
Serial.println(ldrValue);
delay(10);
}