Re: Bed mesh doesnt work well
There are five bed leveling systems supported by the Marlin firmware. /** * Choose one of the options below to enable G29 Bed Leveling. The parameters * and behavior of G29 will change depending on...
View ArticleRe: Bed mesh doesnt work well
QuoteRoxy There are five bed leveling systems supported by the Marlin firmware. */ //#define AUTO_BED_LEVELING_3POINT //#define AUTO_BED_LEVELING_LINEAR //#define AUTO_BED_LEVELING_BILINEAR //#define...
View ArticleRe: Bed mesh doesnt work well
I have seen other threads talking about this when using Bi-Linear. And the person that wrote and supports the Bi-Linear Leveling is very busy right now. Can you switch to another bed leveling scheme?...
View Articlewhere is Z max?
Hi, I have a Zonestar (aliexpress DIY printer) with a sanguinololu board. I'm using a inductive sensor as z-probe. I have the probe connected to Z-min(pin 20) and mounted a NC switch at the top as...
View ArticleSolved
found it! My Z_STOP_PIN was the same as the Z_MIN_PROBE_PIN thus ignored by the firmware. pins.h #ifdef Z_STOP_PIN #if Z_HOME_DIR < 0 #define Z_MIN_PIN Z_STOP_PIN #define Z_MAX_PIN -1 #else #define...
View ArticleM42 not working
I use custom marlin firmware for muve3d. I try use d4,5,6,11 pin with M42 to control relay but nothing happen. I had check with voltage meter but nothing. Anyone can help me diagnostic
View ArticleRe: M42 not working
Try using M43 to verify those pins. With M43 you have two options, you can ground a pin and see if it sees a state change (and if so it will report it). Also, you can tell it to toggle pins within a...
View ArticleHow to swap pinouts in Marlin with Ramps 1.4
If I wanted to swap D9 with D8 what would I change in Marlin using a Ramps 1.4 board?
View ArticleRe: How to swap pinouts in Marlin with Ramps 1.4
pins_Ramps.h #if ENABLED( IS_RAMPS_EFB ) // Hotend, Fan, Bed #define FAN_PIN RAMPS_D9_PIN #define HEATER_BED_PIN RAMPS_D8_PIN #elif ENABLED( IS_RAMPS_EEF ) // Hotend, Hotend, Fan #define HEATER_1_PIN...
View ArticleRe: How to swap pinouts in Marlin with Ramps 1.4
QuoteRoberts_Clif pins_Ramps.h #if ENABLED( IS_RAMPS_EFB ) // Hotend, Fan, Bed #define FAN_PIN RAMPS_D9_PIN #define HEATER_BED_PIN RAMPS_D8_PIN #elif ENABLED( IS_RAMPS_EEF ) // Hotend, Hotend, Fan...
View ArticleRe: How to swap pinouts in Marlin with Ramps 1.4
QuoteMarlin is so much easier to follow than Grbl but sure is slower too. In Grbl (which is what I really want to change) they stupidly have D10 has flood coolant and D9 as Coolant mist with the fan...
View ArticleRe: How to swap pinouts in Marlin with Ramps 1.4
On my Ramps there is no way a heatsink would fit and it got so hot it melted into the plastic that holds the wires. That one was made by Sainsmart and it burned up and shorted so the next one I...
View ArticleRe: Continue printing after power off and power the 3D Printer on again
Impossible. Without homing, you'll nerver ever have perfect knowledge of where your hotend is. Microsteps always get lost with power off, because stepper snapps to next full step.
View ArticleMarlin 1.1.6
Have integrated Hictop 3DP11/12 setting from configuration.h, configuration_adv.h and pins_Ramps.h into Marlin 1.1.6
View ArticleRe: Continue printing after power off and power the 3D Printer on again
How about using an uninterruptible power supply - > UPS for battery backup... you could have it setup to auto pause when the power goes out and reduce bed temp and shut off the hot end as well to...
View ArticleRe: Continue printing after power off and power the 3D Printer on again
I described how it must work and I mention homing x and y axis, I just want to know where to write the code and how to create a text file on the SD card with the same name of the current printed...
View ArticleRe: Continue printing after power off and power the 3D Printer on again
Is it possible to know that it is unplugged to move the z axis in that moment ?
View ArticleRe: Continue printing after power off and power the 3D Printer on again
I don't want to use UPS or extra battery.
View Article