Rain Drop Sensor with arduino- Interface and Coding

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024
  • 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);
    }

Комментарии • 54