This gallery contains 3 photos.
A nice box showed up at my door earlier this week — a long expected Solidoodle. So here are some …
23 Friday Dec 2011
Posted Adventures with a Solidoodle
inThis gallery contains 3 photos.
A nice box showed up at my door earlier this week — a long expected Solidoodle. So here are some …
14 Wednesday Dec 2011
Posted Building the Sumpod
inIf you’ve built the electronics and fired up the hot end, you may have noticed that the temperature display gets “weird” after going above 100C and returning to room temperature. The last zero of “100” gets stuck on the display because the lcd.print() routine is left justified. Here is a simple fix. Just go into the arduino editor for the Sumpod firmware, and find the first line commented below. Change the code after it as follows (the red text is what is new):
// display temp
lcd.setCursor(11,1);
int valsum=analog2temp(current_raw);
if (valsum<100)
{lcd.print(” “); lcd.print(valsum);}
else {lcd.print(valsum);}
}
Recompile and upload to the arduino board and your LCD temperature display will now work correctly.
14 Wednesday Dec 2011
Posted Building the Sumpod
inWhile I know there is a new OEM hot end on the way, I went ahead and created my own experimental one. And, it really works! To save time, I purchased a “universal” one offered on ebay (http://www.ebay.com/itm/110781340223) and modified it to work in the Sumpod head.
Does it work? Yes, indeed it does. Now, on to a real build!
06 Tuesday Dec 2011
Posted Personal 3D Printers
inThree new personal 3D printers, all fused filament types, are being offered in the US. At the moment, two are on crowd-source funding campaigns, and one is being offered directly through a storefront. These are complete units, in one case fully assembled and tested, with the intended market being new people to the field. Prices are quoted as listed today and may be subject to change.
The cheapest, the SeeMeCNC H-1, is being offered on indiegogo.com at $350 complete but has a parallel port controller board. Their campaign ends in 4 days from now. These guys are from the CNC subtractive manufacturing world. The unit has injection molded parts and even injection molded plastic bearings! It is patterened off of the RepRap Huxley design. You can order the unit without the electronics and motors for just $100 and add your own with a RAMPS or even one of the MakerBot controllers. Hmmm, maybe it is time to retire my old CupCake CNC and reuse the electronics?? There doesn’t appear to be a heated build surface for this one yet.
The next one up the price list is from kickstarter.com as well as their own web site, printrbot.com. It is $499 complete, and this includes an integrated hot build surface. Again, it is intended for a novice to assemble. This unit has sold over 900 units for a take of $320,000, with still 11 days to go. It is quite compact and also claims to be expandable by changing out rods and screws. Quite amazing!
The last unit to mention is from solidoodle.com. This unit is $699, but unlike the other two, it is completely assembled and tested upon arrival! Another unique feature is that it is completely enclosed with a hinged front see through door. This definitely looks more like a “real” appliance, and the enclosed design is far safer in public settings. I’ve been tentatively recommending these to school districts (since I’ve not seen one in action yet). Shipments are scheduled by mid-December at this time so some lucky folks will soon have the opportunity to check them out.
None of these machines are “in the wild” yet though will be in the next few months. It looks like 2012 will be an exciting year in the development of personal 3D printing!
01 Thursday Dec 2011
Posted Building the Sumpod
inI decided to break the wiring information into two pieces. There are too many minor loose ends I’m working on but have not had time to address. My “day job” gets intense this time of year (final exams, tests, grading, etc.) so the “spare time” is far less so. At the end of this part, there is a pictorial diagram for wiring the LCD. Seems to be a lot of confusion out there, so if you are having trouble on this, check out what I have posted: SumpodBuildPart4a
You must be logged in to post a comment.