Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Bed leveling assumes plane bed. G33 is for fixing warped beds, but has it's own set of regions to test and correct! Make sure z bed distance is some mm so probe always untriggers when up. This is the main error for probing failures or starting to lo…
-
#define ENDSTOP_PULLUP_Z_MIN true #define ENDSTOP_Z_MIN_INVERTING true #define MIN_HARDWARE_ENDSTOP_Z true #define Z_PROBE_PIN ORIG_Z_MIN_PIN #define Z_PROBE_PULLUP 1 #define Z_PROBE_ON_HIGH 1 are the 2 blocks that must match. Both have pullup …
-
If your z home position is min you need to configure z min endstop the same as z probe. Reason for choosing the temperature homing is that in that case you can define z homing position. Since you use z probe homing on 0,0 is normally not possible as…
-
We have this instead: /* Normally cou want a next/previous actions with every click of your encoder.Unfortunately, the encoder have a different count of phase changes between clicks.Select an encoder speed from 0 = fastest to 2 = slowest that result…
-
Ok, just tested on my windows and it worked several times in a row, so generally it does work as expected. So the question is what is so special in your case that it does not succeed. Can you disable/activate printer several times without problems i…
-
Z-Probing is continusly improving and you should definitely upgrade to dev version with it. The beginning sounds like a homing procedure ZXY preheat Z but the rest might be neglecting the z probe xy offset. When probing the probe becomes position of…
-
You are right. #define ALWAYS_CHECK_ENDSTOPS 0 must be set so it can go down again ignoring the trigger. Also your z probe offset should be positive even if marlin needs -0.55 if should trigger before nozzle hits bed and that is a positive distance…
-
remcohn said: like this Ok, that does not look the same. Looks like x motor is very coarse. What steps per mm does it have and does it move smooth if you move slowly or does it look like big step - pause - big step? In that case it is n…
-
Use M119 to test if probe is configured correctly. If triggered Z min and z probe should show H otherwise L! Only when that is working proceed.
-
You need to have ALWAYS_CHECK_ENDSTOPS 0 since z min is also z probe and it triggers before you hit bed. You need to configure to go up a bit at startup so it is untriggered when you start homing. This also means to never go fully up so this always …
-
Isn't so much buffer overkill? But yes it explains why reset takes long at least when the reset function is not working with the board. Hope the video makes it clear what is happening so I can check it against source code to see what is happening.
-
What is "BIG visible stepping"? I don't know what it should look like so I just can say I see under extrusion as it looks like filled areas are not full and that leads to more problems like the one you described.
-
Please open hardware manager in windows. If you connect you see a com port appear and server connects. If you unplug and server disconnects you should also see the port disappear. Server should reconnect as soon as it again sees that port. So does w…
-
Server has event dependent gcodes. One event is pause where you could move the head out of the way e.g. G1 X0 Y0 F12000 Since pause stores start position it will go back to it after pause but with this move directly at the beginning you get no blob …
-
To me it looks like underextrusion,a lso it is hard to see on the pic. But such broken lines and parts and wide open parts are not normal. You I guess you need to calibrate extruder steps per mm carefully or if that was ok increase extrusion multipl…
-
In your script you must end it with T0 to select mixing ratio for first virtual extruder. Your last block has set current ratio to 0/100 so from there on it will only move extruder 2 just as you describe. After a T0 it should only move Extruder 1. I…
-
Maybe just write a simple echo sketch for arduino to test it. You could even copy echo to real serial so you can connect with 2 terminals to test the thing. I had only once tested bluetooth with a RADDS board at a second UART and it worked directly.…
-
It is the ip fro the device you installed it on plus :3344 so login on the device and ask it. For linux in terminal use "ip addr" and in windows you could use "ipconfig" in cmd.exe to get it. It is the same as you use in the frontend with your webse…
-
Looks like a private pic as we can not see it.
-
Yes, send us an email with license code and we can reset them. If you know the date it was registered it helps, otherwise we need to revoke all and then they reregister when used next time until count is up again. So in any case we can get your lice…
-
If you use only one extruder slic3r omits T0 and will use the current extruder which must not be T0! Add P1 to M164 and you should be able to see mixing ratios in eeprom so you see if the commands set it like you expect. Also if commands are used th…
-
Just retry. Comparison showed a wrong value in flash so software on board is defect if that part is used. Often this is just coming from a communication error and after a reupload it will vanish or be another address will be wrong if communication i…
-
Dev version should help. I always advice a z-max endstop, but as discussed in this forum several times it is possible to use z-probe as z-min endstop as well. Both ways have advantages and disadvantages and it is more personal opinion on what is bet…
-
Don't think it is skipping steps and rounding error. I think it is simply dragging filament with your nozzle. Much depends on correct steps per mm of extruder so you have enough material to stick where it should. Also temperature and material must f…
-
I don't think so. Fixing it on hardware side makes uploading impossible so not adviced and in host/server you can not disable it.
-
It is same as for all z probes. IR is nothing special to handle. You should use dev version which fixes many issues around autoleveling and also has a menu entry in "Setup" menu. If you have a fixed bed you normally only need to level once. If you a…
-
Since host is only sending the commands I guess it is on marlin side that they do not do what is expected. If there is a special treatment for first x extruders I do not know. In repetier-firmware all are treated equally.
-
Maybe you need to invert enable pin for xyz? At least if motors are enabled after reset they are wrong and first move disables drivers.
-
Printer height is computed wrong (1mm to small here). This can be influenced by z probe height changing it by +1mm and rerun G32 S2. Then homing should go 1mm deeper.
-
"wait" is coming from printer every second if no data was received. So seing that is ok and shows that baudrate is configured correctly. Only sending from pi seems to get ignored. Maybe level of that pin is modified by pullup or set as outout from a…