Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
That is the checksum send to printer for error identification.
-
Slic3r configs are stored as files on harddisk so can easily be copied. They are in homedir/AppData/Roaming/Slic3r AppData is a hidden file so make sure you can see them!
-
Maybe you have activated to have a fan, whcih uses the same output by default. Disable the fan support in this case and try again.
-
These are not very progressive values. The problem is what happens and when. When you extrude to fast you always get one of these problems. Heater needs to melt filament and only hot filament can be pushed through nozzle. So for extrusion max. speed…
-
If you check /home/pi/.bashrc you see at the end if ! pgrep "xinit" > /dev/nullthen xinit -- -nocursor 2> /dev/null > /dev/null &fi the xinit command starts the xserver and then chrome etc. If the console already appears you missed …
-
These 2 rows are normal if display does not get initialized. Assuming it had worked the 5 prints before it is no firmware issue, more likely is that the cable to display has a defect or just lost contact on a important pin. Printing is normally not…
-
For the z problem we have modified G30 - G30 P - Single z-probe at current position P = 1 first measurement, P = 2 Last measurement P = 0 or 3 first and last measurement - G30 H R Make probe define new Z and z offset (R) at trigger…
-
Not really. You get the same problem at -5 instead just with other coordinates at same point. It is the endstop/z probe making the problem here.
-
Not owning a real CNC I'm not really familiar with all the wishes here. CNC_RPM_MIN do you mean there is a minimum and otherwise a spindle would stall? Because we do not measure real speed. In fact rpm gets computed from interpolation for pwm, that …
-
The design has a big flaw as it seems. In general it is ok, but form time to time I see Recv: Jam signal steps:32787 / 1322% on 0 if that was not a test it is not consistent enough. You better make a straight line for the filament and add a spring …
-
If you use our image disable x-server on startup. Login with ssh (using putty for example) and edit /home/pi/.bashrc and remove the xinit line near end of file and reboot. Xserver would start chrome using up much memory and pi 1 does not have so mu…
-
Wenn die Grafikdarstellung zu langsam wird, reduziert der Host die Qualität bis hinunter zu Linien statt 3d filament, damit der Drucker nicht ins stottern gerät weil zu viel Zeit für 3d Darstellung verwendet wird. Das verhalten kann damit ausgeschal…
-
Not really. I'm so busy that I can not make assumptions on date. It is already available on github in dev2 branch, but not everything is working and bigger things may change, so only usable if you know what you are doing and what is already working.
-
Good point. tested and all input boxes have the same problem. Fortunately I found a fix that seems to work and makes all input boxes accept Ctrl+A. Thanks.
-
The code is in Extruder.cpp function void Extruder::selectExtruderById(uint8_t extruderId) near end of the function you have if(Printer::isHomedAll()) { Printer::moveToReal(cx, cy, cz, IGNORE_COORDINATE, EXTRUDER_SWITCH_XY_SPEED…
-
100mm is a bit much for most printers. But in install direction is a file custom.ini where you can set the increments used. I think it is possible to change them without requiring a new signature key.
-
"I set the home to 56 (essentially 0)" What does that mean in settings? y home should still be 0, you just need to tell homing to probe at y=56 so it can make the move (or probe at 80). Select homing order with preheat so you can set where to prob…
-
Heater pin for ext1 is not used and could be set to not connected (-1) to mark it clearly. Also to prvent it gets initialized.
-
I see in official version that it tests same direction. So fine as long as rpm is not relevant. Fix for official driver would then be void CNCDriver::spindleOnCW(int32_t rpm) { spindleSpeed=map(rpm,0,CNC_RPM_MAX,0,CNC_PWM_MAX);/…
-
Do you have ALWAYS_CHECK_ENDSTOPS 1? In that case the triggering z probe might prevent the move as well. Try different solution in that case. Go down to bed, check height then test when nozzle would hit the metal block. That is the official solutio…
-
Yes, I'm aware of that which is why I posted the possible fix for testing, so in case it works I could add it to the sources. All my boards/sd cards are hard wired to hardware spi making testing the solution a bit hard.
-
You need #define EXT1_TEMPSENSOR_PIN TEMP_0_PINso the second extruder reads same temperatures. SHARED_EXTRUDER_HEATER is really just using the same heater so it does not mix 2 devices turning it on/off but current temperature needs just the same in…
-
Nice solution. So you have now split the webcams or is that pci board so much faster then build in usb ports?
-
You can only extruder after it is hot so after {IF_EXT0}M109 T0 S{TEMP0} add G92 E0 G1 E30 F600 G92 E0 adjust speed to what makes sense for your extruder.
-
Not sure which value you found, but EXTRUDER_SWITCH_XY_SPEED is the one used when switching between extruders, unit is mm/s. It is not stored in eeprom.
-
If you start from command line you see the error report on a crash.
-
Did you change manually in configuration.h to set the value? Such changes are NEVER seen by config tool. Config tool only reads the json string in the comment at the end of the configuration.h. So you always need to make changes in config tool and t…
-
You do not want this normally. This is for use with wrongly dimensioned heaters, e.g. 12V heater used on 24V so max pid value is 64 instead of 255. It has nothing to to do with K, P , D values.
-
Oh, I forgot one value. Make sure z home move back is 0 - I think that might be the only value added by G28 that is not added by G32.
-
No extra value. Normally homing is at correct height as it uses the same additional variables as probing does. That is why I said the homing sequence could be a problem. For tilted beds it is important to know where you measure as you need to fix th…