Browse Source

Report temperatures for all extruders

Guillaume Seguin 11 years ago
parent
commit
376d8af2c8
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      Marlin/Marlin_main.cpp

+ 8
- 0
Marlin/Marlin_main.cpp View File

1220
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1220
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1221
         #endif //TEMP_BED_PIN
1221
         #endif //TEMP_BED_PIN
1222
       #else
1222
       #else
1223
+        for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
1224
+          SERIAL_PROTOCOLPGM(" T");
1225
+          SERIAL_PROTOCOL(cur_extruder);
1226
+          SERIAL_PROTOCOLPGM(":");
1227
+          SERIAL_PROTOCOL_F(degHotend(cur_extruder),1); 
1228
+          SERIAL_PROTOCOLPGM(" /");
1229
+          SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); 
1230
+        }
1223
         SERIAL_ERROR_START;
1231
         SERIAL_ERROR_START;
1224
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1232
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1225
       #endif
1233
       #endif

Loading…
Cancel
Save