MartinH
About
- Username
- MartinH
- Joined
- Visits
- 694
- Last Active
- Roles
- Member
Comments
-
Did you heat up the nozzle ? Firmware prevents the extruder motor from moving if the nozzle temp is below about 150 C You can override this by sending a M302 (allow cold extrusion) command to the printer
-
Is the nozzle getting hot enough ? try melting a bit of fillaament on the outside of the nozzle.
-
After re-flashing you need to send M502 ;read values from config M500 ;save values too eeprom or clear the eeprom befor flashing.
-
can you post your config.h pls
-
If it is a loud squeel, i would plump for the piezo sounder on the display being activated.
-
Just checked my 3d touch. It shows 14:39:57.583 : N25 M340 P0 S1500*3614:40:03.728 : N26 M119*3014:40:03.734 : endstops hit: x_min:L y_min:L z_min:L Z-probe state:H14:40:15.183 : N27 M340 P0 S700*2114:40:18.255 : N28 M119*1614:40:18.262 : endstops…
-
Is it maybe fitted with the higher temp PT100 ?
-
open slic3r pe configuration, goto printer settings tab/custom g code, edit the start gcode as required.
-
The 2 wire plug should go to the Z endstop pins, blacg-gnd white=signal The 3 wire plug should go to the servo connector, brown=gnd, red= +5v, orange=pwm
-
The eeprom settings are stored in the printers controller firmware, what you save too and print from the SD card, is the sliced gcode that tells the firmware what to do.
-
You will need to select 3 point levelling in config.h and upload the firmware to your controller. Lad your existing config.h into the online firmware tool https://www.repetier.com/firmware/v100/index.php then in the features tab in the tool select t…
-
If it was -1.5 in marlin, it should also be 1.5 in repetier. I guess you could set #define Z_PROBE_HEIGHT 0 then home Z and measure the distance from bed to nozzle,then enter that distance into z probe height, this can be edited in the eeprom. mus…
-
62 mm to the left, so try #define Z_PROBE_X1 70#define Z_PROBE_Y1 20#define Z_PROBE_X2 250#define Z_PROBE_Y2 20#define Z_PROBE_X3 70#define Z_PROBE_Y3 250 these can be edited in the eeprom via repetier hosts eeprom config tool note/ G28 ; home …
-
Hi. Couple of things i notice. #define Z_HOME_DIR 1 ; set to -1 for Z min homing. You have Z homing set to Z max, is this correct as you have the Z probe using Z min pin set, and no Z max endstop defined. #define Z_PROBE_PIN ORIG_Z_MIN_PIN Also. #d…
-
You should set the XY HOMING POS FOR Z (ZHOME_X_POS/ZHOME_Y_POS) to the actual bed location that yoou want to home Z at eg. 100 100 If left at 999999 999999 it wil try to home Z at the current xy location
-
Did you heat the nozzle, the extruder motor is prevented from moving (by firmware) until the nozzle temp is about 150 C
-
Did you make the changes in the config.h or direct in eeprom ? changes done in config.h need to be updated to eeprom with M502 M500. Do you have any Z offsets set in the slicer ? maybe post the first 30 lines of a g-code you are trying to print migh…
-
#define Z_PROBE_HEIGHT 0 This line sets the distance from the bed to the nozzle when the probe triggers, in your case it should be set to 2.3 Then when you home Z and send a G1 Z0 the nozzle should just touch the bed. So you dont try probing the ed…
-
adamhaze8 said: I should also mention that with my x and y endstops, they would short out the motherboard whenever triggered. Why would this happen? If they are the 3 wire types, you have them plugged in the wrong way around so they are …
-
From your description, it is doing everything correct. I had the same problem with 0,0 being right where the bed screw is situated,i got around it by resetting 0,0 so it is located away from the screw, you loose a couple mm of print surface but it s…
-
First off, your Default_Max_Feedrate for Z is way too high 4000 steps/rev , you have it at 10. Try #define DEFAULT_MAX_FEEDRATE { 200, 200, 2, 25 }and #define DEFAULT_MAX_ACCELERATION { 2000, 2000, 100, 10000 } After changing these an…
-
Yes, uploading does not over write the old vakues in the eeprom so you can either upload and then do M502 M500 or before uploading i prefer to run the 'clear eeprom' script in the arduino files folder,then the new values will be uploaded.
-
#define DISTORTION_START_DEGRADE 0.5 ;
-
Your G code is trying to drive Z into negative G1 Z-1.000 F7800.000 G1 X67.991 Y98.162 F7800.000 G1 Z-4.650 F7800.000 In the slicer start G code, try moving G1 Z5 F5000 ; lift nozzle to after the G90 command
-
#define Z_PROBE_BED_DISTANCE 1.99
-
From the looks of it, it should configure and work just like a bltouch, one warning tho, i doubt the 5 volt regulator on the arduino will be man enough to drive a actual servo motor,so you will need to power the servo from an external 5 volt source.
-
G32 and G33 use different probe settings. The G32 settings are #define Z_PROBE_X1 15 ;
-
1/ Yes repetier firmware supports bltouch. 2/ G32 S2 bed levelling assumes a flat surface and will level out any tilt, however G33 'distortion correction will map a non flat surface and add Z correction, in repetier host there is a display disstoti…
-
If you plug the Y endstop into the Y max socket you need to set #define MIN_HARDWARE_ENDSTOP_Y false and #define MAX_HARDWARE_ENDSTOP_Y true and #define Y_HOME_DIR 1
-
Bottom of the 'general tab' Z correction part