RAyWB
About
- Username
- RAyWB
- Joined
- Visits
- 2,124
- Last Active
- Roles
- Member
Comments
-
sometimes pulleys get loose on motor shaft , that´s hard to see ,but as it´s a small number it might be the pulleys are not centered, had some of those cheap chin*** with this issue a couple of weeks ago. if you swap pulleys from x to y and vice ve…
-
as i have same situation i just edit the g-code file in repetier host and just use the search /replace function. search for T0 and replace it by T1. that does the job.of coarse you can use an other editor also
-
OK , so 864 times is a lot, not comfortable to manual click that number of repetitions via script. might be better to generate a file f.e. in excel .
-
G41 is not supported by GRBL, if you just want to repeat some sequences you can do this via scripts in repetier host
-
looks like 24V heater powered with 12V only. can you measure heaters resistance? for 40 Watts: 12V Heaters are around 3.6 Ohms 24V Heaters are around 14.4 Ohms
-
tried something and also got something running. but it will work as host , using g-codes only.Unfortunately Nextion Display sends some , for Firmware unknown commands back , didn´t find the timeto Research.Regarding GD2, I´m working actually on a Sy…
-
some of the plagiate dues have a bug on it see: https://forum.repetier.com/discussion/comment/11360/#Comment_11360
-
seems to be modified Marlin FW https://3ddruckerforum.blogspot.de/2016/12/vorinstallierte-firmware.htm
-
just rotate motor connector by 180°
-
If you do this for x and y direction you have to add or subtract radius of Flute depending on probe direction. usually you have a 3D probe or edge finder instead of probing with the flute for this procedure.
-
ok, i understand. So on a 45 degree diagonal move limit is feedrate * sqrt2 (that´s also what test showed)
-
just building my first corexy.f.e. my kinematics can move up to 600mm/s at acceleration of 12000 mm/s2 max feedrate in Firmware is limited to 500mm/s for x and yso i just generated a gcode like the following and use it as script in repetier host Ma…
-
sorry, i have no experience with that, i use laser for engraving
-
you find the parameters in slicer settings
-
seems you overlooked that laser only gets activated when moving. so the M3 command has to be followed by G1 command. for example: M3 G1 X100 Y100 F500 //here Laser is ON G0 X0 Y0 //here Laser is OFF Laser is only switched on during G1 , G2 and G…
-
just can tell you what i did at the beginning.. i took calibrated thermocouple and removed the nozzle to measure inside the heater block. absolute nonsens. why? the filament temperature will never be the same, it usually is not long enough in the…
-
I´m not familiar with the use of G10/G11just went through the code and saw that M600 Needs Feature retraction and UIcontroller to get active
-
check your configuration.h for if Feature Retraction is enabled#define FEATURE_RETRACTION 1if this doesn´t fix it tryM24 to pause / M25 to continue
-
guess you are trying to measure hotend with IR thermometer. This cannot work because of emissivity of metal surfaces. refer : https://en.wikipedia.org/wiki/Emissivity
-
https://www.repetier.com/firmware/dev/index.php
-
Habe auch nen Pi3 mit dem fertigen Image am laufen , Mit USB Webcam Ohne HUB, ohne Probleme.Was vielleicht hilft : Ich versorge den Pi mit einem kleinen Stepup converter, der exact auf 5,2V DC eingestellt ist ,am dafür vorgesehenen micro USB Stecker…
-
use Repetier-Firmware configuration tool for version 1.0.0dev / section Endstops
-
why don´t you use the already implemened safety door Switch? it´s a Input stopping the Printer when door is not closed
-
maybe you should check eeprom values if they match the values you wanted to have.especially check steps for Z-axis.cannot see unusual Setting in configuration.h on first sight. i just wonder why z-axis homes to max and doesn´t stop when moving down…
-
Quote:"Y in software goes from 250 to 200, but Z axis keeps going down and has no intentions to stop, had to emergency stop, used G0 Z240 and did the same. "maybe you should post your configuration.h to see whats going wrong with your z-movement, s…
-
do you have endstop at z-max?what happens when you home z and send G0 Z200 afterwards (without probing)
-
change homing to ZMAX. procedure : Home z , Home x , home y , then probe . That´s the way it works for me
-
position change when axis disabled depends on motors. when disabling the driver, the motor jumps to the next "full step position". f.e. if you use 1/16th step and you stop the motor at microstep 12 , the motor will jump forward to next fullstep afte…
-
What Drivers do you use for motors? if DRV8825 you should set #define STEPPER_HIGH_DELAY 1 also for beginning try to set acceleration to lower value . i would start with values around 500 for all ,if that works try increasing in 100´s steps #de…
-
are you using cura engine (integrated in Repetier Host) or do you use separate Cura ?