|
@@ -1816,10 +1816,20 @@ void process_commands()
|
1816
|
1816
|
#endif
|
1817
|
1817
|
|
1818
|
1818
|
SERIAL_PROTOCOLPGM(" @:");
|
|
1819
|
+ #ifdef EXTRUDER_WATTS
|
|
1820
|
+ SERIAL_PROTOCOL((EXTRUDER_WATTS * getHeaterPower(tmp_extruder))/127);
|
|
1821
|
+ SERIAL_PROTOCOLPGM("W");
|
|
1822
|
+ #else
|
1819
|
1823
|
SERIAL_PROTOCOL(getHeaterPower(tmp_extruder));
|
|
1824
|
+ #endif
|
1820
|
1825
|
|
1821
|
1826
|
SERIAL_PROTOCOLPGM(" B@:");
|
|
1827
|
+ #ifdef BED_WATTS
|
|
1828
|
+ SERIAL_PROTOCOL((BED_WATTS * getHeaterPower(-1))/127);
|
|
1829
|
+ SERIAL_PROTOCOLPGM("W");
|
|
1830
|
+ #else
|
1822
|
1831
|
SERIAL_PROTOCOL(getHeaterPower(-1));
|
|
1832
|
+ #endif
|
1823
|
1833
|
|
1824
|
1834
|
#ifdef SHOW_TEMP_ADC_VALUES
|
1825
|
1835
|
#if defined(TEMP_BED_PIN) && TEMP_BED_PIN > -1
|