Rain Drop Sensor with arduino- Interface and Coding

Описание к видео Rain Drop Sensor with arduino- Interface and Coding

Arduino Code:


void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}


void loop() {
// read the input on analog pin 0:
int sensorValue = analogRead(A0);

Serial.println(sensorValue);
delay(100);
}

Комментарии

Информация по комментариям в разработке