Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 11. July 2016 11:37 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 42 |
#define DEFAULT_AXIS_STEPS_PER_UNIT {88.7,89,398,106.8} // default steps per unit for Ultimaker #define DEFAULT_MAX_FEEDRATE {300, 300, 5, 25} // (mm/sec) #define DEFAULT_MAX_ACCELERATION {3000,3000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot. #define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration in mm/s^2 for printing moves #define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration in mm/s^2 for retracts #define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously) #define DEFAULT_XYJERK 20.0 // (mm/sec) #define DEFAULT_ZJERK 0.4 // (mm/sec) #define DEFAULT_EJERK 5.0 // (mm/sec)Irgendwo hier, aber muss ich auf etwas achten wenn ich die Geschwindigkeiten ändere? Und welche Einstellungen genau sind dafür da?
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 11. July 2016 11:57 |
Administrator Registrierungsdatum: 17 Jahre zuvor Beiträge: 13.999 |
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 11. July 2016 13:35 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 42 |
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 11. July 2016 15:37 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 4.977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 13. July 2016 06:29 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 632 |
Quote
Technix
2. Wo in Marlin kann ich die maximale Druckgeschwindigkeit einstellen? Mein Drucker druckt vlt ein wenig zu hastig...
#define DEFAULT_AXIS_STEPS_PER_UNIT {88.7,89,398,106.8} // default steps per unit for Ultimaker #define DEFAULT_MAX_FEEDRATE {300, 300, 5, 25} // (mm/sec) #define DEFAULT_MAX_ACCELERATION {3000,3000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot. #define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration in mm/s^2 for printing moves #define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration in mm/s^2 for retracts #define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration in mm/s^2 for travel (non printing) moves // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously) #define DEFAULT_XYJERK 20.0 // (mm/sec) #define DEFAULT_ZJERK 0.4 // (mm/sec) #define DEFAULT_EJERK 5.0 // (mm/sec)Irgendwo hier, aber muss ich auf etwas achten wenn ich die Geschwindigkeiten ändere? Und welche Einstellungen genau sind dafür da?
3. Wie heist der G-Code Befehl für die Lüftersteuerung? Wenn ich etwas drucken möchte gehen die Lüfter am Extruder nicht automatisch an... (verwende Slic3r)
Technix
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 13. July 2016 18:54 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 42 |
Send: N2814 G1 X141.839 Y103.589 E1205.03347*104 Communication timeout while printing, trying to trigger response from printer. Configure long running commands or increase communication timeout if that happens regularly on specific commands or long moves. Send: N2815 M105*25 Communication timeout while printing, trying to trigger response from printer. Configure long running commands or increase communication timeout if that happens regularly on specific commands or long moves. Send: N2816 M105*26 Recv: Error:Line Number is not Last Line Number+1, Last Line: 2813 Recv: Resend: 2814 Recv: okDas kam im Terminal, denke das kann man irgendwo in Marlin konfigurieren, oder? (sehe aber nicht wo )
Send: N3350 G1 X139.736 Y116.839 E1433.67625*111 Communication timeout while printing, trying to trigger response from printer. Configure long running commands or increase communication timeout if that happens regularly on specific commands or long moves. Send: N3351 M105*19 Recv: Error:Line Number is not Last Line Number+1, Last Line: 3349 Recv: Resend: 3350 Recv: ok
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 14. July 2016 02:21 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 632 |
G90 G92 X0 Y0 Z0 G92 X1 Y1 Z1
G90 G92 X0 Y0 Z0 G92 X0 Y0 Z0
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 14. July 2016 02:31 |
Administrator Registrierungsdatum: 17 Jahre zuvor Beiträge: 13.999 |
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 14. July 2016 02:36 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 632 |
Quote
VDX
... die jeweils zweiten G92 sollten wohl eher G1 sein ...
G90 G92 X0 Y0 Z0 G1 X0 Y0 Z0
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 14. July 2016 03:56 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 4.977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 14. July 2016 16:31 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 42 |
Send: G90 Recv: ok [...] Send: G92 X0 Y0 Z146.5 Recv: ok
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 14. July 2016 17:50 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 4.977 |
endstops.enable(true); // Start with endstops active. After homing they can be disabled
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Homing ohne Endstops und Druckgeschwindigkeit begrenzen bei Marlin nur wie? 18. September 2016 13:52 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 153 |