Bluetooth-Modul 13. June 2016 04:39 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 05:45 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
SERIAL_PROTOCOL(current_position[Z_AXIS])
SERIAL_PROTOCOL_F(current_position[Z_AXIS])
#define SERIAL_PROTOCOL(x) MYSERIAL.print(x) #define SERIAL_PROTOCOL_F(x,y) MYSERIAL.print(x,y) #define SERIAL_PROTOCOLPGM(x) serialprintPGM(PSTR(x))
Re: Bluetooth-Modul 13. June 2016 05:49 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 05:56 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 06:17 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
Re: Bluetooth-Modul 13. June 2016 06:34 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 06:46 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
case 117: // M117: Set LCD message text, if possible gcode_M117(); break; case 118: // M118: Serial log temperatures gcode_M118(); break; [...]
/** * M118: Serial log temperatures */ inline void gcode_M118() { SERIAL_PROTOCOL("E"); SERIAL_PROTOCOL_F(degHotend(0),1); // temp. of first hotend in degC SERIAL_PROTOCOL(","); SERIAL_PROTOCOL(current_position[Z_AXIS]); SERIAL_PROTOCOL(","); SERIAL_PROTOCOL_F(degBed(0),1); // temp. of heated bed in degC SERIAL_PROTOCOL("\n"); }
Re: Bluetooth-Modul 13. June 2016 07:12 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 07:39 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
Re: Bluetooth-Modul 13. June 2016 07:56 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 08:04 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
Re: Bluetooth-Modul 13. June 2016 08:13 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 08:17 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
Re: Bluetooth-Modul 13. June 2016 08:24 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 08:30 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 13. June 2016 09:04 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
Re: Bluetooth-Modul 13. June 2016 09:31 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 15. June 2016 14:50 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 20. June 2016 02:38 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 20. June 2016 10:47 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: Bluetooth-Modul 20. June 2016 13:06 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 20. June 2016 16:07 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: Bluetooth-Modul 21. June 2016 03:03 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 21. June 2016 03:03 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 21. June 2016 06:37 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 3.969 |
Re: Bluetooth-Modul 21. June 2016 07:25 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 21. June 2016 07:29 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 922 |
Re: Bluetooth-Modul 21. June 2016 10:39 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |
Re: Bluetooth-Modul 25. June 2016 10:33 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 224 |