Selaa lähdekoodia

Report temperatures for all extruders

Guillaume Seguin 12 vuotta sitten
vanhempi
commit
16b9239a26
1 muutettua tiedostoa jossa 8 lisäystä ja 0 poistoa
  1. 8
    0
      Marlin/Marlin_main.cpp

+ 8
- 0
Marlin/Marlin_main.cpp Näytä tiedosto

@@ -1068,6 +1068,14 @@ void process_commands()
1068 1068
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1069 1069
         #endif //TEMP_BED_PIN
1070 1070
       #else
1071
+        for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
1072
+          SERIAL_PROTOCOLPGM(" T");
1073
+          SERIAL_PROTOCOL(cur_extruder);
1074
+          SERIAL_PROTOCOLPGM(":");
1075
+          SERIAL_PROTOCOL_F(degHotend(cur_extruder),1); 
1076
+          SERIAL_PROTOCOLPGM(" /");
1077
+          SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); 
1078
+        }
1071 1079
         SERIAL_ERROR_START;
1072 1080
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1073 1081
       #endif

Loading…
Peruuta
Tallenna