Re: Error message: "Marlin\SanityCheck.h:1325:1: error:
I was unaware of it. I found it in a file called "macros.h" and changed it to 6 but I still get the same error message. Are there any others that may need changing. Also I notice that in RC8 it is set...
View ArticleRe: Error message: "Marlin\SanityCheck.h:1325:1: error:
It took me a while but it turns out I need to change 2 settings from 4 to 6. #define NUM_AXIS 6 #define XYZE 6 Thanks for the help. :)
View ArticleRe: Marlin configurator
new version 2.8.0 with ability to publicate your configuration [github.com] and list of published [lt.rv.ua] with comment and sharings ability
View ArticleZ axis Homing Issue
i am Reworking a Printer that was built by students at our university, im adding a probe and several other features to make it more reliable for our use in the Print Lab. i am running into an issue...
View ArticleRe: Z axis Homing Issue
Are these set #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. //and #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to same logic as...
View ArticleRe: Z axis Homing Issue
QuoteRoberts_Clif Are these set #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. //and #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to same logic as...
View ArticleRe: Z axis Homing Issue
//=========================================================================== //============================== Endstop Settings ===========================...
View ArticleRe: Z axis Homing Issue
I am using a TL-W3MC2 using a Operating voltage range 10 to 30 VDC sensor which is powered with 5V, 1st sensor a SN04-N 6V was too bulky. [www.ia.omron.com] I have stopped at Marlin 1.1.5 temporally,...
View ArticleRe: Z axis Homing Issue
QuoteRoberts_Clif I am using a TL-W3MC2 using a Operating voltage range 10 to 30 VDC sensor which is powered with 5V, 1st sensor a SN04-N 6V was too bulky. [www.ia.omron.com] I have stopped at Marlin...
View ArticleRe: Z axis Homing Issue
When Flashing you should always Initialize settings as the old settings sometimes do not get read. This can be done from the LCD Menu using Initialize settings followed by Save Settings or sending M...
View ArticleRe: Z axis Homing Issue
Very rough Rewrite with Marlin 1.1.5, enough to get x and y axis moving and hominh correctly as well as checking Endstop Status to ensure Probe is Triggered/Open when intended. still no change oddly...
View ArticleRe: Z axis Homing Issue
Endstop Pullups? im having a hard time finding info on these and exactly what that means, it may be a coding term i do not know. could these have an effect on what i am experiencing? G28 Command Homes...
View ArticleRe: Z axis Homing Issue
Alright! here i am looking like a fool, this whole time thinking that the Probe has been acting accordingly. after repeatedly running M119 commands it seems that the probe when trigger sticks in a...
View ArticleM600 question
So if I understand this correctly: First I activate the #define FILAMENT_CHANGE_FEATURE in Confiuration_adv.h then I place something like M600 X10 Y10 Z10 L100 where I want to pause the print?
View ArticleRe: Z axis Homing Issue
PULL UP RESISTORS usually a 4.7 k resistor connected to VCC to pullup the signal line to VCC when not being held low by a closed end stop switch. Digital lines have two states High or low, zero volts...
View ArticleRe: M600 question
Well I gave it a try but no luck. I'm using 1.1.6, on a Rumba board. The display is a RepRap full graphics display. I did not see the "Filament Pause" on the display - should I have - as an option? I...
View ArticleRe: M600 question
Yes you need to enable filament run-out switch. or maybe just { #define FILAMENT_RUNOUT_SCRIPT "M600" } outside the filament Runout Statement lines?? If you do not need the runout switch then it may...
View ArticleRe: M600 question
This is what I did. /#define FILAMENT_RUNOUT_SENSOR #if ENABLED(FILAMENT_RUNOUT_SENSOR) #define FIL_RUNOUT_INVERTING false // set to true to invert the logic of the sensor. #define...
View ArticleRe: M600 question
OK was not sure! But let's think about this. I have a filament run out sensor so I tested the line of code. M600 X10 Y10 Z10 L100 // Pause Print It worked as expected. So You actually do not need a...
View Article