I keep on facing the cannot accept the argument {empty string }...
const int gasPin = A0;int sensorValue = 0;int outputValue = 0;void setup() {Serial.begin(9600);}void loop() {int analogVal = analogRead(gasPin);Serial.println(analogVal);delay(1000);float IniVol = 75.0 / 1023.0 * 5.0;float FinalVol = analogVal / 1023.0 * 5.0;float ChangVol = FinalVol - IniVol;float ppm = 407.25 + 2800.0 * ChangVol;
I think i have solve the problem with changing the println to print
Sometime the app will receive 179180 which is 179 and 180
2:59 PM (4 minutes ago)
I dont really know whats the meaning of delimiter and what is the function of it.