Browse Source

Add capability string CHAMBER_TEMPERATURE (#13391)

Reference: #13380
Andrei Pozolotin 5 years ago
parent
commit
cc8a871705
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      Marlin/src/gcode/host/M115.cpp

+ 8
- 0
Marlin/src/gcode/host/M115.cpp View File

@@ -164,5 +164,13 @@ void GcodeSuite::M115() {
164 164
       #endif
165 165
     );
166 166
 
167
+    // CHAMBER_TEMPERATURE (M141, M191)
168
+    cap_line(PSTR("CHAMBER_TEMPERATURE")
169
+      #if HAS_HEATED_CHAMBER
170
+        , true
171
+      #endif
172
+    );
173
+
174
+
167 175
   #endif // EXTENDED_CAPABILITIES_REPORT
168 176
 }

Loading…
Cancel
Save