Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Ok, have checked it and made some fixes so it compiles. You need to disable HOST_RESCUE since you have no eeprom. Also the extra key you defined will not work. You need a controller for it to work. So you need to define one working with ultratronic…
-
Host always show the real coordinates unless your printer shape is CNC router. Send G92 X0 Y0 Z0 @isathome so host will assume homing position at the time sending the command as well.
-
It is not the hex file. avrdude is not getting the expected response from your printer board. Different boards use different bootloaders so it is important to select the right uploading setting. You did not name the board, so can not say which one i…
-
Do you always shutdown the pi before unpowering? If you don't you can get a corrupt filesystem that deletes new files after reboot and filecheck. Have see it live and it is nothing server related. In that case we could create a file in a directory a…
-
I have put it in the todo as it might in deed be a nice thing, but if I do it I would make it a bit more technical including online hours and meter printed/moved maybe. That way you can also plan future maintenance. But you need to know that it is n…
-
There are to homing orders with temperature, one does in deed home z first and then xyz, so sounds like you have switched it. Maybe you did mess up by modifying the config sometimes manually and not with config tool. Config tool will then drop your …
-
We only have a mjpg stream, so this would require converting it into H.264 format which is time intensive. Knowing how long ffmpeg takes to convert jpgs to a video I do not think that the pi especially the small ones can do that. Also we would need …
-
V2 is not expected this year. We are still working towards 1.0 which will still rely on angular base. Only when all functions originally planned are included we will start conversion to V2 in earnest.
-
You can do that with extcommands.xml where you can define scripts that appear in printer context menu. These scripts can e.g. set a GPIO pin.
-
You can select fake temperature sensor and heater -1 hopefully works meaning you have none. That makes it a tool without extruder function.
-
Ok, wenn es nur ein binary war dann ist natürlich schwer zu sehen was da eingestellt ist. Beim Quellcode hätte man ja einfach die Einstellung ändern können. Es gibt natürlich noch den Weg die Konfiguration komplett selbst zu machen, aber dazu muss m…
-
Sorry, no file. You can not attach files in forum. You can mail it or use a public dropbox link, or use https://filebin.net/ for a link that invalidates after a month.
-
You need Arduino IDE 1.8.8 which is latest version. Your sources contain the sd fat library in a modified version adapted for firmware, so nothing to install. It is in the src subdirectory. That is why you need the 1.8.8 which supports the src subdi…
-
Klar. Ich hab den Thread als referenz auf meiner Todo. Wenn z mitfährt kann das die Geschwindigkeit bremsen je nachdem wie schnell Z fahren darf und wie viel Z sich bewegt. In dem Fall wäre es sogar richtig.
-
Aktuell bin ich zu beschäftigt um das zu klären. Grundsätzlich will ich es schon lösen und habe es auf der Todo liste.
-
Yes, z min endstop is the limit. There are 2 solutions: 1. Send G1 S1 to disable boundary check. As long as z min does not trigger you can then go below z also host will not do it, but sending the gcode will work. 2. Use G30 - G30 H R Make probe def…
-
Es gibt einen fake Sensor der immer genau 25°C zurück gibt. Offenbar hast du den Typ gewählt und nicht den richtigen Sensortyp. Wenn du heiz, lass dir im host/server die Ausgangsleistung anzeigen. Wenn da 100% steht versucht er es zumindest. Manche…
-
Looking into current code case 415: // Host rescue system { #if HOST_RESCUE if (com->hasS()) { // Enable rescue system Printer::enableRescue(com->S != 0); } if (com->hasZ()) { // Replace z Printer::currentPosition[Z_AXIS] = com->…
-
Your geometry is off which causes the dome effect. G32 will only solve the rotation error, but not the geometry error. G33 is also no solution to this error as it will remove correction over height. You need to fix first geometry and then you can ad…
-
Host contains no drivers. We just use com ports offered by windows, which of course depend on a driver. But these are not from us, but form the board producer resp. the company making the serial converter. Could you communicate with Arduino IDE seri…
-
Don't have it so I can not say. If it is compatible for marlin or repetier-firmware then it should be no problem.
-
Set brim extruder to 0 to use the currently active one.
-
Just set temperatur ein slic3r start gcode M104 S[first_layer_temperature] ; set extruder tempM140 S[first_layer_bed_temperature] ; set bed tempM190 S[first_layer_bed_temperature] ; wait for bed tempM109 S[first_layer_temperature] ; wait for extrud…
-
Der Editor läuft im Browser also nicht auf dem Pi. Wollen ihn ja nicht crashen:-) Er sendet nur die Dateien.
-
Vielleicht kommt sie auch. Wenn der Server raus ist gehts ans Host update.
-
Main power is the 12/24V power you use for the printer. At least the Rambo Einsy in my Prusa will not start without it. Only the communication chip gets the power from usb which is why you see the port. But only if the AVR chip gets power from 12/24…
-
First go to /var/lib/Repetier-Server/logs/ and check the latest log to see if there was a printer disconnect. You would see printer disconnected/connected messages around the time of your stop. Maybe with timeshift depending on the clock settings. I…
-
Druck fortsetzen ja, slicer ist das nächste big feature. Wir haben da eine wie es gut und zügig gehen könnte, aber wir wollen es ähnlich wie im host mit graphischem Editor, ist also einiges an Arbeit.
-
Ja kann ich mir vorstellen. Alles wird mindestens langsamer und wenn die dann timeouts bekommen... Mal sehen ob 1hz klappt oder es doch in den Host muss. Abe rich mag es nicht zu viele Einstellungen zu haben, das macht immer alles so unübersichtlich-
-
At least after restart it should get it right. It might be an error that caused the interface to break partly. Anyhow, soon you get 0.91.0 where the touchscreen is compiled with newer angular version, is faster and much is changed. Hope that it then…