We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b685aef commit ae5d5c0Copy full SHA for ae5d5c0
build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino
@@ -3,7 +3,7 @@
3
4
Examples of how to use substring in a String
5
6
- created 27 July 2010
+ created 27 July 2010, modified 1 April 2012
7
by Tom Igoe
8
9
http://arduino.cc/en/Tutorial/StringSubstring
@@ -13,6 +13,9 @@
13
14
void setup() {
15
Serial.begin(9600);
16
+ // Wait for port to be opened:
17
+ while (!Serial)
18
+ ;
19
Serial.println("\n\nString substring():");
20
}
21
0 commit comments