Re: Porting Zonestar/Hesine/Anet panel support from repetier
the buttons are all wired to 1 analog pin through different resistors. the schematic is this one [forums.reprap.org] the problem is exactly the fact that it uses an analog pin...
View ArticleRe: Marlin not compiling for printrboard
What version of Arduino did you get it running on? I'm hoping it was something like v1.6.8 !!!
View ArticleRe: Marlin not compiling for printrboard
printrbot's use of old marlin is pretty annoying. anyone know what changes printrbot made to marlin, can they be easily rolled into a current marlin that can build with current IDE?
View ArticleUse input signal to start or pause a 3D print?
Hello everyone, I'm working 3D printer and would like to use an external button on my Arduino to pause and resume my print. Does anyone know how I would do this? Ideally I would like to pause my print...
View ArticleRe: Marlin not compiling for printrboard
Quotebani printrbot's use of old marlin is pretty annoying. anyone know what changes printrbot made to marlin, can they be easily rolled into a current marlin that can build with current IDE? For the...
View ArticleRe: Use input signal to start or pause a 3D print?
M600 Gcode can be an option for that. It stop printing and wait until you press the LCD button.
View ArticleRe: Use input signal to start or pause a 3D print?
Thanks! I found the M266 command does exactly what I want. It pauses the print until I put a signal on a certain pin.
View ArticleExtruder calibration issues
I need some assistance in getting my extruder calibrated. The problem is I am not able to calibrate the extruder. I can manually extrude 100 mm of filament and only 20 or so comes out. I am building a...
View ArticleRe: Extruder calibration issues
Sounds like you have the EEPROM enabled. You have to send a M502 followed by a M500 after a firmware upload that has changes in configuration.h.
View ArticleRe: Extruder calibration issues
Quotestephenrc Sounds like you have the EEPROM enabled. You have to send a M502 followed by a M500 after a firmware upload that has changes in configuration.h. Even when you edit it with Arduino ?
View ArticleRe: Extruder calibration issues
What you edit in Arduino isn't the EEPROM. In pronterface after connecting, send the M502, followed by M500 to update the EEPROM with the new values. Marlin doesn't automatically update the EEPROM...
View ArticleRe: Extruder calibration issues
Quotestephenrc What you edit in Arduino isn't the EEPROM. In pronterface after connecting, send the M502, followed by M500 to update the EEPROM with the new values. Marlin doesn't automatically update...
View ArticleRe: Extruder calibration issues
Quotestephenrc What you edit in Arduino isn't the EEPROM. In pronterface after connecting, send the M502, followed by M500 to update the EEPROM with the new values. Marlin doesn't automatically update...
View ArticleZ axis homing speed
After I changed my extruder, Please see: [forums.reprap.org] my Z axis homing speed drooped to almost 0. Marlin config was not changed: //// MOVEMENT SETTINGS #define NUM_AXIS 4 // The axis order in...
View ArticleMarlin Axis problem
Hello, I have a Sumpod Aluminium with RAMPS 1.4 and Arduino Mega 2560. When I upload the test script everything works fine: LEDs flashing, axis moving back and forth, hotbed and hotend getting hot....
View ArticleRe: Marlin Axis problem
check your endstop status with M119 with the axis off all endstops, they should all read open. if not change const bool (AXIS)_MIN_ENDSTOP_INVERTING = TRUE; to false or from false to true or the max...
View ArticleBed PID autotune not working
I have been trying to get PID working on my hot bed but every time i run the m303 e-1, i get an error "PID Autotune failed! Bad extruder number" #define PIDTEMPBED has been enabled I don't know what...
View ArticleRe: Bed PID autotune not working
Closed. Was editing the old Configuration.h. Had the old and RC6 open at the same time.(:P)
View ArticleRe: Grid in auto home not working
To start, what is it not doing? Does it just avoid the auto level all together? If it is running and I were you I would change my probe points to : #define LEFT_PROBE_BED_POSITION 50 #define...
View ArticleRe: Strange behavior after enabling Auto Bed Leveling
if you haven't figured it out yet, in your configuration_adv.h there is a line #define ENDSTOPS_ONLY_FOR_HOMING uncommenting this will stop the printer from crashing. also #define...
View Article