I keep notes like this because I don't do this often enough to remember all the details (or any of them) from one time to the next.
All my past projects are in /u1/Projects/3dprinting/Projects, I also keep this directory under Git on my github page.
The key components in any of my projects is a ".scad" file and (as always) a Makefile that looks like this:
# Makefile for my helmet bracket helmet.stl: helmet.scad openscad -o helmet.stl helmet.scad SD = /run/media/tom/6331-3331/ copy: #cp helmet.gcode $(SD) cp CE3PRO_helmet.gcode $(SD)/helmet.gcode rm -f $(SD)/CE3PRO_helmet.gcodeThis makefile does not show the steps for converting an .stl file into a .gcode file -- I use Cura interactively to do that.
My last project was "helmet" and in that project I had a Readme.tjt with a lot of notes, particularly about how to run Cura.
To just run OpenSCAD interactively and use the viwer I type "openscad scope.scad" but I decided to put a "make run" entry into the Makefile.
Now I can type "make run &" so it runs in the background, and whenever I do a save from my editor, it redraws the object for me.
I follow the checklist in the Readme.tjt file and end up with a gcode file on my SD card that I can take to the printer.
I clean the print surface off with alcohol, then go straight to "print from TF". I print another Accuwedge just to be sure everything is working. The block for the scope light will take 3 hours, even with 20 percent infill.
To change print settings, you click on a thing up top that looks like 3 horizontal lines with circles along them. It usually says "Standard Quality-0.2mm" alongside. This opens up "print settings". Here is where you set 245 and 85 for the print temperature and plate temperature. (Actually 245/80 works fine and might be better). It is forever resetting this to 215/70 and making me angry. Then to make the darn pulldown menu go away you need to click the "X" in the upper right.
Now type "print from TF card" and watch like a hawk. You should see it first go to 120/85. It leaves the print head at 120 while it heats up the bed. Once the bed gets to 85 it should start heating up the print head to 245.
Now it seems to be printing nicely with PETG. With the 215/70 settings that it always tries to sneak in on you, I was getting no adhesion and a general disaster. I have my A/C running and the room temperature is 81 degrees. Outside it is 104 F.
I just took a look at the ".gcode" file. It is all ascii and it is plain enough to see the temperature settings, though you wouldn't know without the nice comments. So there is no need to "watch the print" start like a hawk, just inspect the gcode file and see if Cura is up to any tricks.
M104 S120 ; Start heating up the nozzle most of the way M190 S85 ; Start heating the bed, wait until target temperature reached M109 S245 ; Finish heating the nozzle
Well, patience gets it done, but why wasn't this happening yesterday? The only difference I think is that I plugged in my USB card reader in advance of starting Cura -- which used to be a good idea.
Adventures in Computing / [email protected]