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