Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Enable filament visualization at the top tool bar.
  • I think the plugin should test the positions, that is why we write them down. You can not expect all firmwares to behave the same or to never change order. Imagine I would fix it now. Users with old firmware will fail and newer users will succeed.
  • As far as I remember the allegro drivers are fast enough to work without delays. Only way to check current is with a multimeter checking reference voltage and check with datasheet how much current that means.
  • 1) Yes, you can do that. Just make sure G32 S2 is run before G33 and NO homing in between. 2) Different routines and different definitions, so order can in deed differ, but that is no problem. 3) Code was easier and did not think of it. Maybe I chan…
  • What device are you running the server on? If it is a raspberry pi the reason is most likely a bad power unit at the raspberry. Then it often happens that usb devices get disconnected which disconnects the printer causing the error in first place. …
  • Ok, printed it 2 times. Once from server and one time from sd card. No y glitches visible. Only thing is my printer has no laser. But same moves, so moves in general are no problem. If you do not go to laser mode, does it still happen with the gcode?
  • Maybe you should give some informations about the hardware. E.g. 280steps per mm at 200mm/s as you set as maximum is 56000Hz which is not possible with a 8 bit controller. With the delays it is also not possible. Delays are only required for slow dr…
  • Make sure z probe bed distance is at least 5 mm. That is the distance it will do the G32 or limit it to depending on version.
  • So you can move x, y, z separately and all move correctly. But if you do a small z move y moves instead? If you have only one extruder I suggest connect stepper for y to that driver and set y axis driver to E1 driver and see if it gets better. That…
  • Yes, as they have same id you need to make it depend on usb port instead. Here how the end of /usr/local/Repetier-Settings/etc/webcam.conf that should result in 2 webcams appearing after reboot. Before reboot also run sudo rm -r /usr/local/Repetier-…
  • Yes, change port. Each port in linux exists 3 times. You need to select the one starting with /dev/serial/by-path/ so linux sees them as 2 different devices as you seem to have same id and the /dev/tty... versions are named in order of appearance wh…
  • We will soon publish a tool that can do a real backup of server state. Then you can restore it easily. Currently you would have to copy history.sql from database folder to get old history back. In general to copy all data and settings just copy /var…
  • It mainly depends on strtod and according to docs it should not be a problem. However without spaces a E would be treated as exponent and become a problem. At least according to official implementation, how arduino works might be different, so easie…
  • He is talking about repetier firmware. Here with fast corexy you can use any equation if you find the sport as he showed to have different math then the original core xy.
  • Good so my guess was right and you can use the by-path solution to solve our problem.
  • In one image at position 11008 you have a line Uncomment ... That is no valid gcode. Maybe that is causing the problem. To find out what the problem is you need to enable logging and check the log around the error time and see what is happening th…
  • G32 always goes back to start height used for probing. It is not a different homing command. If you run M114 after G32 you will also see that firmware assumes a z height so running G1 Z0 afterwards should move to Z=0.
  • Fact is, the model is non manifold. You see in the middle the gears have inner faces. I guess the creator glued 2 gears on each other without removing them, but that them non manifold. The fact that is only horizontal could allow slicers to slice i…
  • I have rechecked Printer::runZProbe and saw 3 places where a delay might be needed for safe signals. Will update the dev version later today along with an other addition I'm testing.
  • It will show the first 4 temperatures in your material list for the extruder defined in the extruder tab in printer settings. If you have not 4 temperatures it will extend the list with 4 predefined temperatures. Only thing is you will not see the n…
  • Do you know the chip used for communication? One thing you can do is using an old unused computer and install linux on it. Then install Repetier-Server to it to communicate with the printer. Host can communicate with server so you can still print u…
  • You see the firmware stopped responding with "ok" so no line could be send. Even after sending next line no more answers. The fact that you also could not reconnect if I interpret that last line correctly shows that windows has problems with the com…
  • You can e.g. add a M6 command in commands.cpp. Unfortunately my time frame does not allow me writing such special solutions. LCD output is a bit difficult to integrate and will take most of the time, except if you only change the status line. So I w…
  • Do you have a small example where it always happens for testing. Might be a rounding problem with small numbers leading to wrong coordinates.
  • If jerk is higher 2*max speed all speed changes are without acceleration. With the slow speed used here that should be no problem. You need to have it anyway so you can use speed to change color. Or you need a pwm controlled laser that you programme…
  • You can disable target position check G1 S1. End stops might still trigger if enabled.
  • It is in config tool. Search "Enable extruder cooler at". It is just not in the extruder details as it is same value for ll extruders.
  • Timeout happens normally on 2 occasions: 1. Firmware hangs/takes long when not expected. 2. Communication error caused the "ok" returned by firmware to be received as "o" or "k" or something other. So host does not know it can send next line and the…
  • Except that I have power management disabled after 13 seconds and no bluetooth messages timing on startup is nearly the same. A bit faster maybe but that can different sd card speeds. So that seems ok.  sudo systemctl poweroff --no-…
  • What is dual extrusion to your understanding? Printing with 2 extruders same time or just having 2 extruders?