mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-01-15 20:35:34 -07:00
Add temp reports for other sensors
This commit is contained in:
parent
db615bc942
commit
7323ff21bd
1 changed files with 15 additions and 0 deletions
|
|
@ -330,6 +330,21 @@ void GcodeSuite::M115() {
|
|||
#if TEMP_SENSOR_BED
|
||||
",bed:{min:", BED_MINTEMP, ",max:", BED_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_CHAMBER
|
||||
",chamber:{min:", CHAMBER_MINTEMP, ",max:", CHAMBER_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_COOLER
|
||||
",cooler:{min:", COOLER_MINTEMP, ",max:", COOLER_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_BOARD
|
||||
",board:{min:", BOARD_MINTEMP, ",max:", BOARD_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_PROBE
|
||||
",probe:{min:", PROBE_MINTEMP, ",max:", PROBE_MAXTEMP, "}"
|
||||
#endif
|
||||
#if TEMP_SENSOR_SOC
|
||||
",soc:{max:", SOC_MAXTEMP, "}"
|
||||
#endif
|
||||
"}"
|
||||
);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue