double data1 = config[cstr][0];
double data2 = config[cstr][1];
Serial.println(data1, 6);
Serial.println(data2, 6);
polyX[i] = data1;
Serial.println(polyX[i]);
I am having the problem that the json string it prints the result as a json string : 9.908333
but when it needs to be calculated it is only: 9.9
This is GPS data, it's too much error
Hope to get help from you.