Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,089
- Last Active
- Roles
- Administrator
Comments
-
I can not follow your code changes. Can you post a simple non working sample and tell where laser is on and off. You say you use M3 and talk about retraction and extrusion. It is either using increasing E values or M3/M5. Been a while I used my lase…
-
I always used /tmp/printer but you need a recent klipper version - older versions did not set right permissions to that file. Maybe you have that problem? Speed should not matter as it is only a pipe. Did you test if klipper it self works correctly…
-
Ok, so it uses just T: which always maps to active extruder. Others will be reported as 0 in server then. That is ok.
-
Not if it is a regular file. You can of course hack the code and skip that file name but that takes time and eventually ram which is limited at least for the 8 bit boards.
-
Great. If you have some commands that allow it to install from original deb package, please let me know. I can then make a faq entry to describe how to do it on arch linux. That way all 4 deb versions can be handled with a different linux distro the…
-
Nice approach but if we start adding a language then we should do it right meaning real equations etc. Not really sure if and when I would implement this. Even in your case you could simply make z increment relative and just copy the code 20 times. …
-
E is the E parameter in G1 X120 Y80 E1 that is the extrustion of the FDM etxruder. Alternatively you can use M3/M5 to turn laser on. Then it is on for G1 moves and off for G0 moves.
-
Firmware V1 supports no PWM. If the electrons has a 5V input for laser it will trigger faster I guess. When laser is on depends on the logic. Normally it is on if E value increases. So for slicer set retraction to 0 and set diameter such that even …
-
Server geht auch ist aber etwas tricky weil das eigentlich zum anpassen für Hersteller gedacht ist. Serverseitig kannst du mit einem Lua modul einen Drucker überwachen und Aktionen ausführen. Im Modul kannst du auch ein extra tab für Druckeransicht …
-
You already tested all reasons I know. Only thing left is that it is not retracting but slipping. Did you try if you extrude in free air, retract with your retraction settings and then go back it start extruding right away but does not really extrud…
-
Looks like they missed a new file that was added apart from being behind our current release. Here https://unix.stackexchange.com/questions/83540/installing-a-deb-package-on-arch-is-it-possible I read it is possible to install deb packages directly…
-
M104 S255 is for fdm setting temperature. For laser please use the laser mode which was made for this. See repetier.ino file around M451 M42 sets a pin as output on first use, so nothing to declare in firmware configuration. There are some pins ma…
-
Dann ist ein Plugin ja super. Damit kannst du ja auch den Druck stoppen und Befehle senden.
-
Plugins or modules as our version is named are two fold. It is nice to have easy extension and they are a pain when it comes to modifications. Octoprint is a good example for it. Many problems occur by plugins not being compatible any more with some…
-
The problem is that server runs as user repetierserver who also owns /var/lib/Repetier-Server so pi can not upload to that. But on start server will always fix permissions so running on shell sudo chown -R pi /var/lib/Repetier-Server after stopping …
-
Habs gerade getestet, also mit einer Webseite klappt es, mit dem webstream nicht. Die Anzeige erfolgt im html widget von Apple wo auch der crash entsteht. Die version ist leider nicht ganz identisch mit safari selbst wo der link direkt funktioniert.…
-
In server prepend command with # and you can send anything 1:1 including server commands.
-
M42 can turn any pin on/off. Sure laser is made to be controlled by 12/24V bed pin? At least my laser as 12V power plus a TTL signal for on/off. That could also explain the delay. Anyhow you can set a delay on activation of laser (LASER_WARMUP_TIME…
-
Sounds like it maps to T0-T15 the same as repetier-firmware does. So simply add 15 more extruders. It might be that you can only change one temperature or only one gets reported. So do not wonder. That is ok. Could you post a output to console if A…
-
You are right. Testing myself also prevents it. Have to check why. The server solution should work none the less.
-
Hört sich nach einem Privatprojekt an. Grundsätzlich kann man den Host mit Plugins in C# erweitern. Anleitung steht auf der Homepage zur Verfügung. Damit bekommst du neue Menus und Tabs hin, wo du deinen Druck anzeigen kannst. Existierende Fenster k…
-
Speed is always limited by steps you can signal. So 1/16 instead of 1/32 only makes sense if you did exceed possible stepper frequency with retraction speed. Otherwise it will do nothing. Bowden requires more retraction then direct drive. One of my …
-
It depends on how your firmware handles the extruders. Does it have T0 and T1 to switch? Does it have T0 - T15 to set mixing ratios? For each Tx you need one extruder to be able to select from interface.
-
You can use Marlin as firmware for Klipper. But you will not be able to use the non gcode commands I guess. What you read about prefixing # only works for server. What should be no problem is if you use Repetier-Server for connection and in Host sel…
-
Start as sudo /opt/RepetierServer/bin/RepetierServer -c /opt/RepetierServer/etc/RepetierServer.xml and you will see in terminal why it fails or at least chances are higher as you now see full output. Then I can say more on what might be wrong. Can …
-
Being invalid code that could in deed be a problem. The always work version to send anything 1:1 is prepend a # to the command. This will really send it 1:1 - no checksum, no line number added. For smoothieware we also added a switch to detect suc…
-
Check that you have #define MOVE_X_WHEN_HOMED 0#define MOVE_Y_WHEN_HOMED 0#define MOVE_Z_WHEN_HOMED 0 so moves are possible without homing. Also add S1 to G1 moves to disable boundary check. Enable it after homing. Are these coordinates within off…
-
You do not need to add, you must replace HAL.cpp:679 definition.
-
What firmware type did you select when configuring the printer? You have marlin but I guess you used Repetier-Firmware which uses a protocol marlin does not understand. Just go to configuration and switch it. Baud rate and port are set correctly.
-
Make sure to use the right sensor type. Wrong types can give totally wrong temperatures. Also make sure the analog input used is made for the sensor type. E.g. a PT100 sensor will not work at the thermistor input. Also as always make sure to use the…