Storing temperature values to log file?
-
@T3P3Tony Got it, thank you
-
@stef @T3P3Tony @Adamfilip @engikeneer @jay_s_uk @whopping-pochard
M122
=== Diagnostics ===
RepRapFirmware for Duet 3 MB6HC version 3.4.6 (2023-07-21 14:11:38) running on Duet 3 MB6HC v1.01 (standalone mode)
Board ID: 0JD2M-999AL-D25SW-6J9D0-3SD6M-9PY70
Used output buffers: 1 of 40 (20 max)Hi Guys,
I appreciate this is an old thread and I'd like to do something similar, but not sure I fully understand it.
What I would like to do is take temperature readings every 20 seconds (or so), from a thermistor on (temp1), for the duration of a print and save them to a log/file or something like the heightmap.csv to look over at a later date. I only really need the temperatures.
I've tried putting both the suggested lines above in Config.g but all that seamed to do when I clicked save was immediately creat the file in /sys then start then stop a log.
Can I ask for your advice of what should actually go where or if there's another method to use?
Dizzwold.
-
M929 P"mytemplog.txt" S1 ; start logging and only log warnings by default
would go in config.g
something like
while true && state.status == "processing" M118 S{"Temp 1: " ^ sensors.analog[1].lastReading ^ " C"} L1 G4 S20
would go in daemon.g
That would only log the temperature while printing a file
Alternatively, BtnCMD allows you to setup a graph and export whatever it reports to a log file
-
@Dizzwold as @jay_s_uk outlines uses the built in logging function. Alternatively if you want just the temperatures and never want any other warnings or other things that could be logged you can echo to a file from daemon.g in the same way:
https://docs.duet3d.com/en/User_manual/Reference/Gcode_meta_commands#echo-command
while true && state.status == "processing" echo >>"templog.csv" {"Temp 1: " ^ sensors.analog[1].lastReading^ " C"} L1 G4 S20
(Or similar, not checked)
-
Hi Guys,
Thank you for your direction I'll give them a try.
I'd already promised previously to look into the BtnCMD, but I really just haven't had the time. This is actually going to be my first print with the Cast Toolplate I've been on about for the last 2 if not 3 years.
Daemon.g;
I know very little about this, but with a quick goggle I understand it's to do with running a clock from the MCU in the background.
So this has to be called "daemon.g in the /sys directory?
Can you have more than one daemon.g in the /sys directory as I've seen it mentioned before with something else I read, and would you just number them?
daemon1.g
daemon2.g
etcI don't even know if your need more than one to be fair, just asking?
-
@Dizzwold you can only have one daemon.g file
-
Okay, thank you.
Hmm, It's working but seems to be reading the wrong sensor. Temp1, which is what it is reading and documenting, is this T1 in my config.g?
It's basically reading the nozzle temp in the log at around 203˚C. I have the sensor I want to read in-between the fan and the heatsink on my Matrix extruder, "(he chamber heater below). In the graph it shows as around 40 ish ˚C ?
I have the following in my config.g on my 6HC board;
; Heaters M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin temp0 M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0 M307 H0 R0.187 K0.192:0.000 D1.89 E1.35 S1.00 B0 ; disable bang-bang mode for the bed heater and set PWM limit M140 H0 ; map heated bed to heater 0 M143 H0 S120 ; set temperature limit for heater 0 to 120C M308 S1 P"121.temp0" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin temp1 M950 H1 C"121.out0" T1 ; create nozzle heater output on out1 and map it to sensor 1 M307 H1 R2.498 K0.275:0.349 D6.79 E1.35 S1.00 B0 V24.0 ; disable bang-bang mode for heater and set PWM limit M143 H1 S280 ; set temperature limit for heater 1 to 280C ; Sensors M308 S2 P"temp1" Y"thermistor" A"Chamber Temp"T100000 B4138
The very bottom "sensor" temp1 chamber heater is what I'd like to read.
But hey, I'm printing again and with my cast toolplate with pei sheet and mains heater. Hip-Hip-Hooray
It is printing so sweet.
It's not fully trammed yet, as I can't afford the new framework yet to enable doing so, but it's the best I can do for now.
![Screen Shot 2024-02-28 at 11.00.20.png](Request Entity Too Large)Dizzwold
-
@Dizzwold you can check which sensor is what in the object model using the object model plugin
-
@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.