Storing temperature values to log file?
-
@Dizzwold said in Storing temperature values to log file?:
M308 S2 P"temp1" Y"thermistor" A"Chamber Temp"T100000 B4138
thats temperature sensor number 2
-
Hi Guys,
Thank you for that.
Ah, okay, so I'm taking the information for the sensor from the
S2
part of the config.g rather than the actual board input connection "Temp1".
Edit.
Which I beleieve means changing;
M118 S{"Message to Show: " ^ sensors.analog[1].lastReading ^ " C"} L1
to
M118 S{"Temp 2: " ^ sensors.analog[2].lastReading ^ " C"} L1
Thank you again for your help and advice.Dizzwold.