Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Yes, but V1 can only move both extruders in same direction making 1:1 copies. In V2 you can mirror the second extruder to create a mirrored print where it is mirrored at the X axis. So if left moves right the right extruder would move left. Guess y…
-
I don't use Cura 4 and have no Ultimaker printer for testing. Does the code somehow look different then normal gcode? I know at least older machines used Marlin, I think even the creator of Marlin worked for them. Does the log show any problems? I n…
-
It activates z probe at start of G32 so if you just homed you are at x=0, also measuring probe points would work. Go to bed center when you start G32 or G33 and you should not have that problem. If you home using z probe use order with preheat so yo…
-
Ditto mirror is not supported in V1 only in next V2 version and there you can simply switch between mirror and not mirror. Not sure how you did get mirror in V1, might be possible with some config changes. Depending on what you change it could also …
-
Good question. We also are based on Raspbian strech light to have less unused software. We have openbox as window manager and start x server with login at end of pi users .bashrc file. I know from other frame buffer displays that they need to set a…
-
Klipper Befehle sendet man mit einem vorangestelltem # um kenntlich zu machen das es kein G-code ist. Die Klipper befehle verletzten jeden g-code standard und müssen 1:1 gesendet werden, was man mit # am Anfang erreicht. Die enlosschleife versuche …
-
No in Printer.cpp void Printer::setup() { after HAL::hwSetup(); or if you use custom events you can also put it into EVENT_INITIALIZE_EARLY variable.
-
That is a connection. Looks like in host log with ack/commands disabled as they are missing here in log. Anyhow you can connect so that is ok. What I see is a message about defect temperature sensor, which explains why printing will not work. Movin…
-
Also being right to extrude rmeans when you activate it the head must move 39mm to the left so probe is where nozzle was before. If you do that at x=0 you need to go to x=-39 which is outside your configured area I guess.
-
Babystep will send M280 Zx to firmware. But there will be a delay of quite some moves until it reacts. Of cours eit requires a firmware supporting M280 as well. Your linux is missing the chinise font. On ssh console enter sudo apt-get install fonts…
-
Server doe sonly send the g-code. It has flavours by selecting the firmware during installation. But that is only for internal handling, it will send the g-code you upload 1:1. So the created g-code must match the firmware of your printer. If you en…
-
Es ist durchaus möglich Plugins zu schreiben aber so was hat auch seine Nachteile. Oft werden sie mal geschrieben und nie wieder aktualisiert und man muss auf Kompatibilität achten. Daher haben wir hier mehr die alles in einem Guss Lösung mit der Mö…
-
Nein nicht direkt. Es gibt aber möglichkeiten es dennoch einzurichten. https://www.repetier-server.com/monitoring-plugins/ wäre eine Lösung, benötigt aber ein wenig Programmierkenntnisse. Hie rim Forum hat jemand auch ein bash script vorgestellt da…
-
No, server does not override your gcode settings. The settings in server are only used to calculate the time. It needs to know real maximum speed since if your gcode has moves faster then that, the firmware will limit speed. And only if we know that…
-
No that is not what the docs say. NEVER run c in the debugger. You can not stop after it. You need do exactly as the doc says. Run normally the print and once you see memory is increasing start debugger and attach. Do not start server. All I need i…
-
On the sd card in your printer. Host fetches them at connection start.
-
The main menu has the temperatures 2 times. Just had a similar config of 1.0.4 running which unfortunately has only the other screen. You mean the one with the lines and fan to the right. That is covered by #define UI_TEXT_MAINPAGE6_1_EN "\xa %e0/%…
-
You need to put it in the setup yes, so it is initialized. Limit pwm frequency with 8 bit resolution is 16000000/256 = 62500 hz, so is quite good with divisor 1. Not sure how arduino selects the divisor. But you also need to enable timer and set val…
-
But we have no analog voltage. All we have is a pwm output. So you use a pwm signal to create a pwm signal. Guess if there is a capacitor somehow involved to stabalize voltage it should work.
-
A virtual printer is just a printer where you select VirtualCaresian or VirtualDelta as port, that is all. CPU usage sound good. If you have more users connected it increases a bit, also uploading g-codes makes server parse them and render them so …
-
Arduino lib has no way as far as I know. You can google for an other solution that optimizes the chip settings for different frequencies. Not sure which frequency it uses. No laser will be off, but as a solution you can add a slow move instead afte…
-
That might be a good solution also I have no idea how to set PWM for that chip. You just would need to add the custom event for laser to set value to that chip and it would work. Surely faster then what the avr will create.
-
Da dein Fehler im screenshot 0.0005 war ist 0.001 ok. Im eeprom ist offset in schritten (historisch bedingt). mm sind aber einfacher darum ist es in der Konfig in mm und wird beim kopieren umgerechnet.
-
I do not expect paiments for solving bugs:-) What exactly is the error with FAN2? Note that not all boards define FAN2 so in these cases you have to select the correct digital pin number instead that you use.
-
Ok, that is quite clear. Repetier-Server uses 83% memory instead of 2-5% which it normally does not do. So the main question would be what are you doing that others not having the problem don't do. If no one is connected watching (lets except touc…
-
On a ramps there are to power inputs. You need power on both of them. One is for motors and extruders (hence the motor test) and the other is only for bed. So if you only wired bed, extruders will not work. Mosfet are the chips using the small 5V s…
-
Ich meine der Benutzer könnte Klipper korrigiert haben so das es wieder funktioniert. Durch die regelmäßigen tests merkt es dann der server automatisch. Als problematisch sehe ich daher nur die hohen wiederholraten an. Eiegntlich soll er immer 1-2 s…
-
Informer ist gar nicht dafür gedacht. War nur für push messages aus dem server gedacht. Zur Kontrolle kann man ein VPN nutzen und die Webseite aufrufen. Das GUI ist ja auf dem Smartphone auch gut bedienbar und erlaubt dort alles. Ein andere Entwick…
-
Don't do all the reinstalls. It is in firmware or the gcode you send or a combination. My problem is that I'm too busy to test myself at the moment. You could test without M3 and only use increasing E values where you want to laser. That is the se…
-
No, it will not sync and PWM is very slow, not fast enough for a laser. Better use https://forum.repetier.com/discussion/6363/laser-enable-pin-issue#latest