MartinH
About
- Username
- MartinH
- Joined
- Visits
- 694
- Last Active
- Roles
- Member
Comments
-
@ernihatt can you post a pic of what you see
-
Use one of the homing orders that has pre heat, this lets you assign the X Y coords to home Z and also raises Z befor homing so it wont drag on the bed.
-
If you use slic3r or slic3r prusser ed Try this in the start code M104 S150 ; pre heat nozzle to a nominal temp, not enough to oozeM140 S[first_layer_bed_temperature] ; set bed tempM190 S[first_layer_bed_temperature] ; wait for bed temp ; wait for…
-
The way i upload to my board Do not start arduino ide unzip the repetier firmwar to desktop open the created repetier folder (now on the desktop) double click the .ino file (this should automatically open arduino) in arduino ide click the 'tick' to …
-
slic3r and slic3r pr allso come with a repair option in the file menu.
-
You will have to enable the eeprom in the config and then re upload the firmware to your arduino.
-
Is this a mechanical switch type endstop or a probe ?
-
In the arduino software tools menu, click on 'get board info'
-
From the original rampsplus firmware you need to edit the pins.h file, motherboard 33 section and replace the relavent section with this. I allso attached the whole pins.h file if you want to just replace the whole thing #if MOTHERBOARD == 33#defi…
-
Does repetier support the #define UI_DISPLAY_DOGLCD_CS 27 #define UI_DISPLAY_DOGLCD_A0 25 ?
-
Well, your config looks fine,almost identical to mine. When you power on the printer,does the probe do its self test ok (lower and raise pin couple of times)?
-
Can you do a link to your configuration.h pls, i use the 3dtouch on a ramps1.4 with no problems.
-
-
In your config.h you have the probe offsets at X-20 and Y+55 So your minimum reachable probe points will be X0 Y55 Your P1 and P2 both have Y at 0 so the printer is trying to move the nozzle -55 off the front of the bed. Try setting P1 20 65 P2 …
-
De select ACK at bottom of repetier host, this will stop the 'wait' messages
-
Don't know if this helps. The board pictured above is a 3DYMY RAMPSPLUS2 Original Repetier firmware can be found here https://github.com/3dymy/RampsPlus2
-
can you share the STL
-
It is on the 'general'tab near the bottom, just under the circular bed diagram, Dont use the 92.9 version, its too old now. Use 1.0.2 https://www.repetier.com/firmware/v100/index.php this has many improvements especially in the levelling part.
-
can you post a link to your current config.h
-
I suggest upgradeing to the ver 1.0.2 firmware as there have been many improvements to the levelling/probing https://www.repetier.com/firmware/v100/index.php
-
#define Z_PROBE_X_OFFSET 0 These 2 values are how far the probe is mounted from the nozzzle#define Z_PROBE_Y_OFFSET 0#define Z_PROBE_SWITCHING_DISTANCE 1 < I would increase this to about 4 to make sure probe has chance to untrigger #define …
-
without having the stl its hard to say what cause that, could be the slicer or a non uniform stl.
-
In the config tool. Under 'mechanics' endstop section, choose homing order X Y preheat then Z (this lets you then choose the X Y coords to goto to home Z) Just under the homing order, select pre raise Z axis= always and set pre raise distance to 5…
-
I see a couple error in the z probing section of the config #define Z_PROBE_PIN Z_MIN_PIN should be #define Z_PROBE_PIN ORIG_Z_MIN_PIN #define Z_PROBE_SWITCHING_DISTANCE 1 i would make this distance 5 to give enough room for probe to re…
-
this might help https://github.com/MarlinFirmware/Marlin/issues/8504 If the SD card is working properly then it has to be DOGLCD_A0 and/or DOGLCD_CS that has the problem. Try adding the following defines:#define DOGLCD_CS 38 #define DOGLCD…
-
Yes, servo support is not enabled by default in the online firmware config tool. The attached images show how i have my 3d touch(bl touch clone) setup. edit/ 1st picture,you need to set the probe X Y offsets
-
post your configuration.h pls
-
G29 is the marlin code for bed leveling. Repetier firmware uses G32 and yes if the probe trigger point is below the nozzle the probe height should be positive value
-
1st i would make sure that always check endstops is disabled to eliminate any problems with cross talk on the endstop wires. #define ALWAYS_CHECK_ENDSTOPS 0
-
Have you calibrated the extruder steps/mm so that extruding 50mm actualy feeds 50mm of filament into the extruder. I use a bltouch(copy) and find it is not accurate enough to rely on getting a good 1st layer, i always use the baby-step option while…