Serial.println("The Conductivity is " + voltage); //print the current reading to serial port }|
You cannot use the + operator to concatenate a string and a float. Print them using separate print commands.
Serial.println("The Conductivity is " + voltage); //print the current reading to serial port }|
You cannot use the + operator to concatenate a string and a float. Print them using separate print commands.