Add the following snippet to your HTML:
Raindrop #sensor module is one of the most essential stuff for various automation process.
Read up about this project on
Read: What is Arudino? How does it work ? What are the application of it ?
int sensorRead = 0; void setup() { Serial.begin(9600); pinMode(A0, INPUT); } void loop() { int sensorRead= analogRead(A0); Serial.println(sensorRead); }
Comments