{"id":64,"date":"2014-07-02T19:19:23","date_gmt":"2014-07-02T19:19:23","guid":{"rendered":"http:\/\/3d.rayharwood.com\/?page_id=64"},"modified":"2014-07-02T19:45:48","modified_gmt":"2014-07-02T19:45:48","slug":"my-3d-printing-setup","status":"publish","type":"page","link":"https:\/\/3d.rayharwood.com\/?page_id=64","title":{"rendered":"My 3D Printing Setup"},"content":{"rendered":"<p>There are several things involved in 3D printing, and the actual 3D printer is just the &#8220;engine&#8221; behind a list many necessary components.<\/p>\n<h2>You Need an Idea<\/h2>\n<p>First and foremost, of course, you need an idea.<!--more-->If you don&#8217;t have any ideas&#8230; well, I can&#8217;t help you much.<\/p>\n<h2>3D Modeling Software: FreeCAD<\/h2>\n<p>But next you need software to turn your idea into a 3D model.\u00a0 Note that 2D drawing software, like Paint, won&#8217;t do what needs to be done.\u00a0 I played around with Blender a bit, but found it to be more geared toward a 3D animation process, and while it will let you create a 3D model and export it in the requisite STL file format, I just didn&#8217;t get along well with it.<\/p>\n<p>I switched to FreeCAD, and have been using it exclusively since then.\u00a0 Like any complex software, it takes some time, watching tutorials on YouTube, playing, making mistakes, learning how to correct them, and then getting a comfort level.\u00a0 I was using FreeCAD a couple of hours each day, and in about a week, I think I&#8217;ve learned what I need to do what has to be done.\u00a0 Am I an expert?\u00a0 Not yet, by any means, but I&#8217;ve got that &#8220;critical mass&#8221; of knowledge, so now at least I can ask intelligent questions when searching on the Internet.<\/p>\n<p>The 3D modeling program must be able to output a &#8220;mesh&#8221; file (oddly enough called an STL file).\u00a0 This &#8220;mesh&#8221; is a very large number of triangles that describe all of the walls and\u00a0edges required to represent your model.\u00a0 There really are no circles or curves at this point, though there can be many very small lines that look like a curve.\u00a0 These triangles are represented by X, Y, and Z coordinates (that&#8217;s what you\u00a0use when you go 3D!) for each of the 3 points of each and every triangle in your model.<\/p>\n<h2>Slicing the Model into Layers: Slic3r<\/h2>\n<p>Having learned FreeCAD\u00a0 &#8212; I&#8217;ll call that the &#8220;front end&#8221; of the 3D printing process &#8212; there are two other pieces of software you need.\u00a0 There is the middle piece, whose job it is to take the 3-dimensional model you created and &#8220;slice it&#8221; into layers.\u00a0 The folks at Lulzbot recommend Slic3r, an open source program that does a great job for the average user.\u00a0 If you will become a professional 3D printer person, you will probably want to use other software that lets you tweak things at a more detail level, but for the average hobbyist, I think Slic3r does a great job, and indeed has both &#8220;Simple&#8221; and &#8220;Expert&#8221; modes, so even the beginner can start off in a <em>very easy<\/em> mode.<\/p>\n<p>Here&#8217;s a little bit of technical detail of the process that the &#8220;slicer&#8221; performs.\u00a0 See, all of those triangles output by your modeling process have to be &#8220;sliced&#8221; up, so that the printer can first be directed to print only the <em>bottom-most layer<\/em> of the model (Z = 1).\u00a0 The slicer program typically generates a special code that many 3D printers understand, called G-Code (for &#8220;graphics code,&#8221; I imagine) &#8212; typically referred to simply as <em>gcode<\/em>.\u00a0 So the slicer program outputs commands to move the extruder (more specifically, the &#8220;hot end&#8221; of the extruder &#8212; the place where molten filament comes out of the print head) almost completely down to the surface of the printer bed (&#8220;down&#8221; being in the Z direction), then along the X and Y axis as needed.\u00a0 Where the model &#8220;exists&#8221;, gcode tells the extruder to &#8220;extrude&#8221;; where the model is &#8220;empty&#8221;, the gcode tells the extruder to &#8220;retract&#8221;.<\/p>\n<p>Only after the slicer has created all of the X-Y coordinate movements and extruder commands on the first level does it then command the printer to move &#8220;up 1 layer&#8221; (Z = 2).\u00a0 Now X-Y coordinates and hot-end extrude-retract commands are done for layer 2.\u00a0 When layer 2 is done, it goes on to layer 3, and so on.\u00a0 Keep in mind that the slicer program is just writing out gcode to a file at this point.\u00a0 The printer doesn&#8217;t even need to be turned on yet!<\/p>\n<h2>The Printer Interface: Pronterface<\/h2>\n<p>Once your slicer program has generated the gcode for your model, you&#8217;re now ready to print!\u00a0 The printer needs to be turned on, and the final software piece can be fired up &#8212; the &#8220;printer interface&#8221;.\u00a0 The main purpose of the printer interface program is to read the gcode and send it down to the printer in a cooperative way.\u00a0 3D printers &#8211; like their 2D counterparts &#8211; actually talk back and forth to whatever software is printing to them.\u00a0 For example, the printer interface usually can command the printer to start the hot-end and bed heaters by setting them to a specific temperature.\u00a0 (I print my PLA on painter&#8217;s tape with a hot-end temperature of 200 C [about 390 F]\u00a0and the bed temperature at 70 C [about 160 F].)\u00a0 The printer interface can then query the printer to determine what the actual temperatures are, and display them to the user.<\/p>\n<p>The Lulzbot folks recommend a printer interface called Pronterface.\u00a0 This\u00a0&#8211; like FreeCAD and Slicr &#8211;\u00a0is open source software available for many platforms.\u00a0 I think it does a good job letting you know what&#8217;s going on with the printer, both before the printing actually starts, and during the actual printing process.\u00a0 I especially like the feature when it loads a gcode file where it reports the following info:<\/p>\n<ul>\n<li>Length, width, and height of your model<\/li>\n<li>An estimate of how long it will take to print<\/li>\n<li>An estimate of how much filament it expects to use.<\/li>\n<\/ul>\n<h2>Operating Systems: Windows 7 and 8.1<\/h2>\n<p>I&#8217;m a Windows guy, and run Windows 7 on my main desktop machine, and Windows 8.1 on my laptop.\u00a0 I run FreeCAD and Slice3r on both machines, but primarily do my model work on my desktop.\u00a0 I store the 3D files on a folder on my Microsoft OneDrive (I&#8217;m sure you can use any cloud-based storage you prefer).\u00a0 When I&#8217;m ready to print, I go back to the &#8220;craft room&#8221; and run Pronterface on my laptop, connected to the Lulzbot printer.<\/p>\n<h2>Manual Printing: SDHC Card<\/h2>\n<p>I&#8217;ll also mention that you can totally bypass the printer interface program by loading your gcode on an SDHC card, which is then inserted into the printer.\u00a0 That method works fine, and if you are using several printers to print out material in large quantity, I&#8217;m sure that&#8217;s the &#8220;right way&#8221; to do it.\u00a0 But for one-at-a-time development work, you&#8217;ll want the convenience of direct monitoring of the printer via the printer interface.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are several things involved in 3D printing, and the actual 3D printer is just the &#8220;engine&#8221; behind a list many necessary components. You Need an Idea First and foremost, of course, you need an idea.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"spay_email":""},"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/P76pQa-12","jetpack-related-posts":[{"id":251,"url":"https:\/\/3d.rayharwood.com\/?page_id=251","url_meta":{"origin":64,"position":0},"title":"Projects","date":"April 23, 2015","format":false,"excerpt":"Click the Projects menu above to see the various projects as sub-menus, or click below: Dragon - I'm planning an animatronic dragon to sit on my shoulder Neo-pixel mask - Franklin wanted a special mask for a convention he attended in Oct\/Nov 2014 Coins-Worth - this device will process everyday\u2026","rel":"","context":"Similar post","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":9,"url":"https:\/\/3d.rayharwood.com\/?page_id=9","url_meta":{"origin":64,"position":1},"title":"About Ray","date":"June 29, 2014","format":false,"excerpt":"The Boring Personal Details Semi-retired, which means I don't work for anybody else any more.\u00a0 But that doesn't mean I'm not busy! 60 years old, did my first programming on punched cards. Living in Arizona, where it's very hot in the summer -- regularly 125 degrees in my back yard\u2026","rel":"","context":"With 1 comment","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=\/wp\/v2\/pages\/64"}],"collection":[{"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=64"}],"version-history":[{"count":5,"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=\/wp\/v2\/pages\/64\/revisions"}],"predecessor-version":[{"id":70,"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=\/wp\/v2\/pages\/64\/revisions\/70"}],"wp:attachment":[{"href":"https:\/\/3d.rayharwood.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=64"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}