Skip to content

Commit ba931c0

Browse files
committed
Merge of arduino-1.0.1. Work in progress...
2 parents 2aee312 + 2db08a7 commit ba931c0

File tree

74 files changed

+610
-412
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+610
-412
lines changed

examples/1.Basics/AnalogReadSerial/AnalogReadSerial.ino renamed to examples/01.Basics/AnalogReadSerial/AnalogReadSerial.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ void loop() {
1818
int sensorValue = analogRead(A0);
1919
// print out the value you read:
2020
Serial.println(sensorValue);
21+
delay(1); // delay in between reads for stability
2122
}
File renamed without changes.
File renamed without changes.

examples/1.Basics/DigitalReadSerial/DigitalReadSerial.ino renamed to examples/01.Basics/DigitalReadSerial/DigitalReadSerial.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ void loop() {
2222
int buttonState = digitalRead(pushButton);
2323
// print out the state of the button:
2424
Serial.println(buttonState);
25+
delay(1); // delay in between reads for stability
2526
}
2627

2728

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)