You can't add (+) a float variable 'voltage' to a constant string "The Conductivity is" in C/C++.
The usual way to do this is to break it into 2 print satements
Serial.print("The Conductivity is ");
Serial.println(voltage,2); // 2 decimal places
You can't add (+) a float variable 'voltage' to a constant string "The Conductivity is" in C/C++.
The usual way to do this is to break it into 2 print satements
Serial.print("The Conductivity is ");
Serial.println(voltage,2); // 2 decimal places