1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino

46 lines
1.1 KiB
Arduino
Raw Normal View History

2010-07-28 00:59:18 +02:00
/*
String charAt() and setCharAt()
2010-07-28 00:59:18 +02:00
Examples of how to get and set characters of a String
2010-07-28 00:59:18 +02:00
created 27 July 2010
modified 2 Apr 2012
2010-07-28 00:59:18 +02:00
by Tom Igoe
http://www.arduino.cc/en/Tutorial/StringCharacters
2010-07-28 00:59:18 +02:00
This example code is in the public domain.
*/
void setup() {
// Open serial communications and wait for port to open:
2010-07-28 00:59:18 +02:00
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.println("\n\nString charAt() and setCharAt():");
2010-07-28 00:59:18 +02:00
}
void loop() {
// make a String to report a sensor reading:
2010-07-28 00:59:18 +02:00
String reportString = "SensorReading: 456";
Serial.println(reportString);
2010-07-28 00:59:18 +02:00
// the reading's most significant digit is at position 15 in the reportString:
char mostSignificantDigit = reportString.charAt(15);
2012-08-06 12:03:04 +02:00
String message = "Most significant digit of the sensor reading is: ";
2012-08-06 12:03:04 +02:00
Serial.println(message + mostSignificantDigit);
2010-07-28 00:59:18 +02:00
// add blank space:
2010-07-28 00:59:18 +02:00
Serial.println();
// you can also set the character of a String. Change the : to a = character
reportString.setCharAt(13, '=');
2010-07-28 00:59:18 +02:00
Serial.println(reportString);
// do nothing while true:
while (true);
}