วันจันทร์ที่ 16 มกราคม พ.ศ. 2560

Splitting a comma separated string through serial (Arduino)

void setup(){
    Serial.begin(9600);
}
void loop(){
    String first  = Serial.readStringUntil(',');
    Serial.read(); //next character is comma, so skip it using this
    String second = Serial.readStringUntil(',');
    Serial.read();
    String third  = Serial.readStringUntil('\0');
    //parse your data here. example:
    //double x = Double.parseDouble(first);
}

0 ความคิดเห็น:

แสดงความคิดเห็น

สมัครสมาชิก ส่งความคิดเห็น [Atom]

<< หน้าแรก