功能目录
myString.charAt(n)
返回字符串索引 n 处的字符。
String s="hello"; Serial.println(s.charAt(0));//打印字符h Serial.println(s.charAt(4));//打印字符o