I have converted my TAZ 6 to the Archim2 controller and I was wondering if anybody has an ide how to “enable” the USB-print from CURA LE 3.6 again?
I can connect to the TAZ and run commands through the console.
When I try to USB-print 2 messages pop up:
first “Wrong printer detected…” → developer setting show suppress this?
second “The printer has restarted or lost power”
Has anybody any tips how to fix this or a recommendation for an alternative slicer?
Sorry didn’t remember to ask about the Prusa Slicer setup.
Have installed the software on my laptop and its impressive, maybe a little bit intimidating.
Would you share your setup?
I’am a little bit confused by all the options in the software.
Are there predefined filament profiles?
Here is my gcode for creating a matrix. I just plug this into the “Bed Visualizer” OctoPrint plugin where you can trigger a routine to update the mesh. You may want to modify the bed temp based on your typical printing profile with the M190 Sxx command.
G28 ; home all axes
M420 S0 ; Turning off bed leveling while probing
M155 S30 ; reduce temperature reporting rate to reduce output pollution
M190 S85 ; wait for the bed to get up to temperature
G29 P1 ; automatically populate mesh with all reachable points
G29 P3 ; infer the rest of the mesh values
G29 P3 ; infer the rest of the mesh values again @BEDLEVELVISUALIZER ; tell the plugin to watch for reported mesh
M420 S1 V ; enabled leveling and report the new mesh
G29 S1 ; Save UBL mesh points to slot 1 (EEPROM).
G29 F 10.0 ; Set Fade Height for correction at 10.0 mm.
G29 A ; Activate the UBL System.
M500 ; save the current setup to EEPROM
M155 S3 ; reset temperature reporting
M140 S0 ; cooling down the bed
In Prusa Slicer I use this start gcode:
; This gcode has been hacked together by Jason to incorporate ABL
M73 P0 ; clear GLCD progress bar
M75 ; start GLCD timer
G90 ; absolute positioning
M82 ; set extruder to absolute mode
G92 E0 ; set extruder position to 0
M140 S{bed_temperature[0]} ; start bed heating up
M190 R{bed_temperature[0]} ; wait for bed to get to temp
M104 S160; start warming extruder to 160
G28 ; Home all axis
G29 A ; enable ABL
G29 L1 ; Load saved mesh from bank 1
G29 J2 ; 4 point tilt mesh
M109 R{first_layer_temperature[0]} ; wait for extruder to reach printing temp
M117 TAZ 6 Printing… ; progress indicator message on LCD
; END_START_GCODE
The key here is to save and load the same matrix with the G29 S1 and G29 L1 commands.
I did not modify the stepper current.
Let me see if I can export and post my Prusa config. I really just use PETG and PLA and have tuned those profiles myself.