We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bde00b9 commit 0cdc7e5Copy full SHA for 0cdc7e5
build/shared/examples/01.Basics/AnalogReadSerial/AnalogReadSerial.ino
@@ -12,4 +12,5 @@ void setup() {
12
void loop() {
13
int sensorValue = analogRead(A0);
14
Serial.println(sensorValue);
15
+ delay(1); // delay in between reads for stability
16
}
build/shared/examples/01.Basics/DigitalReadSerial/DigitalReadSerial.ino
@@ -13,6 +13,7 @@ void setup() {
int sensorValue = digitalRead(2);
+ delay(1); // short delay in between reads for stability
17
18
19
0 commit comments