Situation :
I'm coding about saving the data which is values of the sensors.
How can I save two values in one sentence, the line below makes error
filehandle:write(" -The Value of the Sensors : "..tostring(valueOfSensor_1)..tostring(valueOfSensor_2).."\n")
I want to save the record like
-The value of the Sensors : 13 and 20
-The value of the Sensors : 14 and 24
-The value of the Sensors : 16 and 22
-The value of the Sensors : 42 and 12
like this.. Any suggestions please?