| Диапазон измерения | 0-100% |
| Точность | ±5% |
| Напряжение питания | 3.3-5V |
| Ток потребления | 10-20mA |
| Размер | 50x30x20mm |
VCC → 5V GND → GND SIG → A0
#include <Arduino.h>
int sensorPin = A0;
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(sensorPin);
Serial.println(sensorValue);
delay(1000);
}
Отзывов пока нет. Будьте первым!