Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
"Individual printer interface" = you made some changes? What I see is that angular did not replace the placeholders, so there will be some error in the script/html preventing this. Open debug tools and check debug console. I think you will see some …
-
No idea why it does not work and 0.92 does. Maybe 0.92 did not test fro these errors. Not sure when all the checks were added. What I see is #define Z_PROBE_SWITCHING_DISTANCE 0#define Z_PROBE_REPETITIONS 0 should be #define Z_PROBE_SWITCHING_DIS…
-
Did you delete so much or is it from an older marlin.xml derived? There is no eeprom type mk4due. It is either marlin or repetier if you can update it with M205/M206. If I remember right at least old marlin kimbra did use that. As far as I know m…
-
Which OS X/Safari version are you using. I develop on mac but normally use Chrome as browser. Now I have it running on Safari but it does not stop working. Is there anything else needed to make it not work, like screensaver must get active, sleep m…
-
Ich hab da gestern etwas herausgefunden was vielleicht die Ursache sein könnte. Problem was ich hatte war das ich die Verbindung verloren hatte, wenn ich eine Große Datei direkt drucken wollte beim Upload. Dabei berechnet er einige Infos und blockie…
-
Das geht ganz einfach. Im SERVER (host hat das Skript auch aber wenn du server nutzt muss das da eingetragen) in den Druckereinstellungen->GCodes->Ereignisabhänging kannst du einstellen was bei Pause zusätzlich ausgeführt werden soll. Vorteilh…
-
Yes was a typo. You see it has no number after it as I use to do.
-
I work very successfully with PrusaSlicer. If you only use one extruder they might not add any Tx switches and print on the active extruder. Then all you need to do is select that extruder at start.
-
Hab es getestet und bei mir geht es weiter. Scheint also kein generelles Problem zu sein. Aber es gibt dead locks die so was verursachen können, wenn ganz spezielle timings zusammen kommen. Die sind aber so gut wie nicht auf anderen Systemen reprodu…
-
No, with CuraEngine in Host you need to use the first extruder as well to also use the second extruder. So either switch colors or add a tiny object for first extruder or use slic3r/PrusaSlicer instead where that is no problem.
-
On first look all seems good. You could try #define Z_PROBE_RUN_AFTER_EVERY_PROBE "" M114 makes no sense, we report position anyway for every probe and that is the only more complicated command before it would move up. If that does not help you nee…
-
Ok, for repetitive moves you need to go back up a bit to untrigger sensor, but you have #define Z_PROBE_SWITCHING_DISTANCE 0 so it will stay with triggered sensor. That would be one problem. The odd thing is you have #define Z_PROBE_REPETITIONS 1 …
-
Das mit dem server restart ist neu. Ich dachte nur der Druck würde abgebrochen werden. Ist die Oberfläche noch bedienbar und nur die Kommunikation ist gestoppt oder hängt der ganze Server. Kannst du mal deine extcommands.xml posten. Ich bring bald …
-
Von welcher version reden wir. Aufgrund dieses Threads hab ich das killen aufgrund des exit codes rausgenommen so das zwar noch die Meldung im Drucklog (nicht server.log) erscheint aber der Druck weiter geht. Sollte mindestens in 0.92.3 schon so sei…
-
Especially deactivating watchdog would prevent it from triggering. What happened then? Hang forever? Because watchdog triggers if it was not reset fast enough. In past there were some operations where it happened, also z probing was never one of the…
-
That sounds like the usb serial connector for that port crashed. Please make sure to use latest server version. Previous version would have reused last (crashed) serial instance while newer version will create a new instance so hopefully also restar…
-
G204 is not for regular steppers only for motors controlled with 20x. X2 motor gets enabled by home x and stays enabled to not loose position after that. Firmware can not know that you do not want to use that one. In v2 Firmware you could use M18 A0…
-
Server has no function to filter extrusion or disable temperature automatically. So if you did not disable temperature manually ... Anyway, hard to say without a log of the print. You need to enable logging then it would be quite easy to find where …
-
That seems to be no communication problem. You just did not configure the printer in server to have a heated bed and extruder. That is why you just see no temperatures. So go to "Printer Settings and then to Extruders and add a bed and extruder. If…
-
Negative koordinaten hängen einfach immer davon ab wo sie zum von der Firmware angenommen physikalischen Position sind. G1 S1 schaltet es ja ab. Wenn es an ist geht es wenn du den Nullpunkt so mit G92 verschoben hast das sie im Druckraum liegen. Ist…
-
Homing moves 150% of width or until it hits the end stop. So if it does not stop the end stop is normally not configured correctly. Try M119 to see if endstops work as expected. Also make sure the when xmin homing it is the xmin endstop triggering!
-
Does it have power and is it connected to host? Disable easy mode and check in log window if you see any communication. E.g. ask M114 and see if you get some coordinates. If not connection is configured wrong so you are not really talking with prin…
-
That is specific. serial1Source is used for second uart. Just duplicate that code for connection 3 and 4 exactly just changing the Serialx and variable names. Maybe increase some arrays where they get inserted. But I have no time to write and test t…
-
Good it works. Forgot about slicer data being read as well on start up. Cura currently is a bit complicated to integrate but it is on the todo. Nonplanar slicing is a complete different technique I think and is quite complicated, so do not expect i…
-
Hard to say as there are not much informations available at the moment and the printer is not available at the moment. They have a usb port and tcp port which is both supported by repetier-server if they can be used to send commands to firmware the …
-
Da gibt es leider immer viel Fehlerpotential. Da jedes board seine eigene Liste an Pins hat stellt man die Pins gerne auch mal in der falschen stelle ein. Meist wird das RepRapDiscount display unterstützt. Das RepRapWorld display ist sicher beim rad…
-
I rechecked the code and just having BEEPER_PIN > -1 should activate the function. It calls a ton function that activates a timer. Need to test that when I get more time. Maybe the timer function is not working as expected. Does not look like you…
-
I guess so. Chargers do not need to hold voltage as stable as power supplies. They are made for more or less constant currents and the pi changes power quickly depending of load, active peripherals etc. That is at least the reason I read. Some may b…
-
You need latest firmware version and change the code. Currently we only support up to 2 parallel connections. As I see you want 4. Never tried that and can not say how good that works. Search all files for serial1Source and add accordingly source 2…
-
Are you using 1.0.4dev? Not sure when it was added but Z_PROBE_BED_DISTANCE requires homing and at least for that version I know it would home first to ensure the correct start height. Of course with zmax homing the error for z height must be smalle…