Category:3D printer
(Redirected from 3D printer)
Software
Firmware Marlin
- Get firmware from https://github.com/ErikZalm/Marlin
- Start the arduino IDE. Select Tools -> Board -> Arduino Mega 2560 or your microcontroller Select the correct serial port in Tools ->Serial Port Open Marlin.pde, Click the Verify/Compile button)
Setup
- General In "Configuration.h”
Change line 46 to “#define MOTHERBOARD 33”for ramps
- For 2004 LCD kit
- Change line 306
“#define REPRAP_DISCOUNT_SMART_CONTROLLER” (just remove the // at the beginning)
- Change line 326
“#define NEWPANEL //enable this if you have a click-encoder panel” (just remove the // at the beginning)
- Switch over to "Pins.h" and change line 318 =
“#define RAMPS_V_1_3” (just remove the // at the beginning)
- For thermistors, enable and disable the temperature sensor, you can find and set it to 0
#define TEMP_SENSOR_0 1 #define TEMP_SENSOR_1 0 #define TEMP_SENSOR_2 0 #define TEMP_SENSOR_BED 1
- Set the thermistors maximum temperature:
#define HEATER_0_MAXTEMP 275 #define HEATER_1_MAXTEMP 275 #define HEATER_2_MAXTEMP 275 #define BED_MAXTEMP 120
Pronterface
- Install python 2.7 and relevant packages, see the instruction on this page: http://reprap.org/wiki/Printrun (help guides for python on python page.)
- Printrun/Pronterface: https://github.com/kliment/Printrun
- Install: python setup.py install
- Run pronterface: python pronterface.py
slic3r
Documents
- see more information about G-code on this page: http://reprap.org/wiki/G-code
Pages in category "3D printer"
The following 2 pages are in this category, out of 2 total.