MartinH
About
- Username
- MartinH
- Joined
- Visits
- 694
- Last Active
- Roles
- Member
Comments
-
As roko said , allsoWhat type of Z screws are fitted, ie 5mm thread rod or 8mm or 4 start lead screw ?
-
Ok, seems your looking at a similar guide to what i have read. Regarding related changes to the Marlin firmware, SERVO0_PIN needs to be set to 13, not 7, as PB7 is on Port B. Not sure how it turns out to be pin 13 as it should logically be on 15 …
-
Ok, more info needed here i think. I see you are using a GT2560, as this board does not have a servo output, how and where are you connecting the servo wires ?picture may help.
-
Silly idea but... make sure you enabled servo support in firmware
-
you still need to send the M500 after the M502 to update the eeprom M502 ; read config fileM500 ;write to eeprom
-
Try updating eeprom with M502M500
-
Mine does this if i turn the computer on 1st. It works ok if i turn on the 12 volt power 1st, then the computer.I think it is due to the 5volt via USB being a lil under powered.
-
#define ENDSTOP_Z_BACK_ON_HOME 0 make sure this is st to 0
-
Took me a while to work out the correct pulse widths for lowering/raising the 3dtouch probe This is what i use for servo outputM340 P0 S770 ;lowers the probeM340 P0 S1320 ;raises the probe
-
You can set the preheat =0 to dissable it
-
Use X,Y,preheat then Z
-
just fitted one of these a few weeks ago. make sure Enable pullup resistor for probe pin (Z_PROBE_PULLUP) is dissabled Probe triggers on high (Z_PROBE_ON_HIGH) is enabled
-
thiagopeixoto16 said: Hello, I have the same error message but I think I have the correct configurations: Z-probe offset X = 0Z-probe offset Y = 30 Z-probe X1 = 200 Z-probe Y1 = 30 Z-probe X2 = 200 Z-probe Y2 = 200 Z-probe X3 = 170 Z-probe Y3…
-
What type of probe ? what is its triggering range
-
#define FEATURE_Z_PROBE true //was 0 by default (Nick)this should be #define FEATURE_Z_PROBE 1 //0=disabled, 1=enabled (not sure if' true is recognised) #define Z_PROBE_BED_DISTANCE 3 // assuming this is simply a distance greater than the antiicpat…
-
You set the print temperature and bed temperature in the slicer settings, this then gets added to the Gcodelook for M190 set bed tempM104 set extruder tempM109 set extruder temp and wait
-
I use http://tinypic.com/
-
#define Z_PROBE_X_OFFSET 0#define Z_PROBE_Y_OFFSET 0 your probe is set to the same position as the nozzle
-
Eeprom settings have preference over the settings in config.h,this is done to preserve any alterations you have made via eeprom. either clear the eeprom before updloading or after uploading send to printer via GcodeM502M500 this will read config va…
-
Post your config.h file and i will look over it for you
-
What version firmware are you using ? dev version is a lot better.Cant see where it is getting the Z-41.99 from, (wierd)Maybe try running the eeprom clear sketch from arduino 1st and re uploading your firmware.
-
Top right corner of host, clik on the easy icon
-
#define Z_PROBE_SWITCHING_DISTANCE 1
-
1st thing i would suggest is update to the latest dev version https://www.repetier.com/firmware/dev/index.php Many improvments have been made in respect of auto levelling and homing using a probe
-
In arduino tools menu select board type Arduino/Genuino Mega or Mega 2560processor type ATMEGA1284
-
Did you run the eeprom clear sketch 1st (in arduino examples) this will clear any old marlin values from the eeprom
-
Sorry, my mistake, reading thru the code, M99 is a valid code so i don't see why it throws up the errors.
-
M99 , afaik it is not used in repetier
-
X0 Y0 are normally front left corner of the bed. what i do is set Xmin=-8 Ymin=-5this puts X0 and Y0 to the corner of my bedIn repetier host you set the printable area as X0 Y0 to X200 Y200 (depending on size of bed)In the firmware config tool/mech…
-
This sounds like you have the wrong steps/mm set in the marlin firmware,What controller board are you using ?What type of Z screws are fitted ? *personally i really do prefer repetier firmware, it has far less bugs )