Hakkavélin Wiki
Advertisement

aka Setting up the damn RepRap software

Mega Reset problem![]

The Mega auto-reset can cause many problems. If you see packet errors, follow this method to cut the trace on the board http://wiki.makerbot.com/thingomatic-doc:arduino-mega-trace

Much of this comes from http://reprap.org/wiki/Microcontroller_firmware_installation

Setting up the Machine firmware and config[]

aka What the hell is 5D?[]

The RepRap software expects something called 5d "FiveD". Unfortunately so does ReplicatorG. The Makerbot firmware does not work for some weird reason. References to the "FiveD" are sketchy, see below. Joe has checked out much of this into the Hakkavelin dropbox.

To use the firmware you need to compile it using the Arduino IDE. Ha! This means you need to check out a copy using the git command:

Problem is, for the Makerbot3g hardware it is based upon a Sanguino, which is not in the standard arduino hardware sets. To fix this, follow directions here:

Next, you have to install it.

After much frustration (as per the name) we gave up on this and modified the machines.xml.

  1. Take the Mendel entry and put the Mark3 printerhead entry within it. It should look something like this
      <machine experimental="1">
                <name>Prusa Mendel Hakkavelin</name>
                <geometry type="cartesian">
			<axis id="x" length="200" maxfeedrate="5000" stepspermm="4.48553846" />
                        <axis id="y" length="200" maxfeedrate="5000" stepspermm="16.4387349" />  
                        <axis id="z" length="140" maxfeedrate="60" stepspermm="148.148148" /> 
                </geometry>
		<tools>
			<tool name="Pinch Wheel Extruder v1.1" type="extruder" material="abs" motor="true" fan="false" heater="true"/>
		</tools>
		<clamps></clamps>
		<driver name="sanguino3g">
			<rate>38400</rate>
		</driver>
		<warmup>
		</warmup>
		<cooldown>
(Turn off steppers after a build.)
M18
		</cooldown>
	</machine>


How to generate and modify GCODE for our printer[]

  1. Start up ReplicatorG 0026
  2. Open the STL file
  3. Menubar GCode > Choose Gcode generator
    1. Pick Gcode (standard)
    2. Click OK
  4. Put the bottom in the center of the platform and touching the surface in the Model tab
  5. Click on Generate Gcode
  6. Select cupcake-mk4-abs
    1. Only do these steps once:
      1. click on Edit
      2. Click on Speed
      3. Change the PWM setting to 400 (the orignal setting was 255)
      4. Click Save preferences
      5. Click Close
    2. select Use raft
    3. Click on Generate Gcode
    4. Wait a while
  7. Click on the gcode tab and start editing the output (don't forget to save)
  8. Comment a bunch of lines out that involve homing, etc. Also change the temperature to 225C instead of 220C. Commenting is with "(". The beginning should look something like this
  9. (Cupcake ABS default skeinforge profile)
(homing routing)
M104 S225 T0 (Temperature to 225 celsius)
G21 (Metric FTW)
G90 (Absolute Positioning)
(G92 X0 Y0 Z0 (You are now at 0,0,0)
(You have failed me for the last time, MakerBot)
(G0 Z15 (Move up for test extrusion)
(M108 S255 (Extruder speed = max)
M6 T0 (Wait for tool to heat up)
(G04 P5000 (Wait 5 seconds)
(M101 (Extruder on, forward)
(G04 P5000 (Wait 5 seconds)
(M103 (Extruder off)
(M01 (The heater is warming up and will do a test extrusion.  Click yes after you have cleared the nozzle of the extrusion.)
G0 Z0	(Go back to zero.)

Running the build[]

  1. Move the printhead to the center and have it almost touch the tabel. Make sure that the nozzle NEVER hits the table or it will jam the extruder and you will have to retract the filament and cut off the bad part.
  2. In the ReplicatorG control panel, click on Make current position zero.
  3. Move the head a little above the table using the control panel
  4. Set the temperature to 225 and wait until the nozzle gets to that temperature.
  5. Run the extruder with PWM of 600, click on forward. and make sure you see happy plastic coming out.
  6. Click on stop button. Clear the nozzle
  7. Push the center Z button in the control panel and make sure it goes back to the previous position. If you need to, keep a little bit of force on the sticky bearing side.
  8. Close the control panel.
  9. Click on the start build button. Away you go!

Useful Links[]


Skeinforge layer height and co[]

See http://davedurant.wordpress.com/2010/11/01/skeinforge-movin-on-up-to-a-recent-version/ for now -Zarutian

Advertisement