Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
The solution with event system is the clean way that would survive updates. The one liner is a hack in the firmware source directly. It is all in driver.cpp void LaserDriver::changeIntensity(secondspeed_t newIntensity) {#if defined(DOOR_PIN) &…
-
G30 is the wrong command. G30 does a z probe where you are. So if you are currently at a wrong position that gives the coordinate error, reagardless of the point you enter for G32. Send G1 X100 Y100 and then test. Also run G32 from there to be sure …
-
Ok, but that seems to be your extruder switch code M401; store current position in memory;G10; retractG1 Z5; level "up" to bucket after XY Homing to avoid interferenceG1 X0.142857 Y45 F2000; move to rear X=0 Y=30 (Homing and purge bucket location)G1…
-
In such cases the problem is normally already in first errors. The problem seems that you do not define all pins for your custom board. Here for example MISO_PIN is not defined to a number so using it in pin macros causes such errors. I guess at le…
-
Does it communicate at all? If you go to console and disable all filters (including ack/M105) you should see reported temperatures in log. What format do they have? Do other commands work? If nothing works make sure the prusa is not set to use the i…
-
No problem is the left front point. Please also note that G33 doe snot use the points from autoleveling. It has it's own coordinates which you can only set in configuration.h. Not sure where you now get errors from.
-
You can run a tool nmap on it testing which ports exist. Normally it is the telnet port 23 but having no ultimake I can not say if they have it there or if they support that method at all. Does the printer also have a usb port to connect to like mos…
-
It is C++ and you oversee the paranthesis where the and (&&) condition is in. So any of the 4 rules can trigger invalid positions. Error:Activating z-probe would lead to forbidden xy position: -96.000000, -10.00 You need to add 96 mm to x …
-
I can not test that code anyway. " It seems that I am printing the upper layer because the extruder push out material flying on the hotbed at about 1 mm height." sounds more like something triggered z min I guess. Do you have #define ALWAYS_CHECK_EN…
-
You can't. It only works with repetier-firmware which is also why it is disabled.
-
Ethernet is always better then wifi but if you get the update it installs the same, so should not make any difference.
-
No it should work as before. In upload to models you now add "overwrite=true" (from 0.92.3 on). That will replace old gcode with same name. But the rest should be the same as before and is the same as used from our gui. Apart from the Repetier-Serv…
-
Ok, mein Fehler. Hab die Änderung der Webseite nicht eingecheckt. Kommt also mit dem nächsten update.
-
Yes, values look good. That should be no problem. So back to one question you never answered. Could you extrude using E0 socket when pins were assigned to seconds extruder? If not the board may have a defect on enable or step pin if I consider that…
-
Wie gesagt du must in Drucker-Konfiguration -> G-Codes->Ereignisabhängig im pause Skript sagen was du in dem Fall willst, sonst bleibt er einfach stehen. Aber während der pause kannst du manuell weiter alles machen.
-
Ok have an idea what it might be. Will test it.
-
1) While it will might work. the pwm frequency is very low. V1 firmware has only software PWM normally 15Hz but can be increased up to 64Hz. If that is ok for you do it. 2) Correct. V1 firmware has no handling for hardware PWM. With V2 this is now …
-
Do you get any answers? In log I only see what you send but no answers. Can you open ip in browser? If you get a webpage port 80 is not the correct one. 80 is normally for webpages and not for serial communication.
-
Normally it will reuse the license on same machine. If your 5 are up due to such problems drop us mail with the code and we reset it for you, so don't worry about that. Update time depends on download speed, but after you loose connection seeing up…
-
In der Druckerkonfiguration gibt es ein Skript für pause. Da sollte immer eine schnelle anfahrt an eine Position außerhalb des Drucks drin stehen - also links oder rechts. Das ist alles was du brauchst. @pause in den gcode und dann geht er da zur Se…
-
device/port = virtual cartesian that is not your printer. It is a fake printer to test things without using a real printer. No wonder it does not work:-) You need a port name that looks like /dev/serial/by-id/... Also now that I know fi…
-
First try reload. If for any reason chromium would boot faster then server it can not load start screen. If it does not help it is likely that server is not running. So login to ssh console and run ps aux | grep tier and see if repetier-server is r…
-
Will have a look at it. But it looks like your browser is using a cached version of the old interface. The script field is missing here.
-
Ok, I found the problem. You have rescue support enabled but disabled the emergency parser. Then firmware runs into a bug due to a missing break. Check file commands.cpp of firmware around line 3156: case 415: // Host rescue system {#if HOST_…
-
V1 has only one memory socket, so position M402 should return to is last M401 being send. Pause will also use that to store position so make no pause in that case. If I understand it correctly you are printing 6 objects one by one and at the top yo…
-
If you see that in console you are successfully connected. Firmware is Repetier-Firmware, also it is an old version. Is the result from testing on host directly or using server connector? Connection should work on both. If you use it on pi test in …
-
So now only ram is the limit. Great:-)
-
If I see it correct you can control both extruders when assigned to E1 and none when assigned to E0. That should mean your configuration of ext0 is wrong.It was either not hot when testing (send M302 S1 to allow cold extrusion as well) or one of th…
-
Yes, that is what I always say. With ditto printing like Stacker does, the bed must be physically levelled. If I understand right the z probe is on the extruders and moving them y wise outside bed prevents hitting bed on first regular homing which …
-
With lcd make sure to only select one language. With all languages selected you exceed the 64kb for text leading to strange errors. As said the 1266 byte ram is ok, that is not your problem. Also the graphic display is a bad idea for 8 bit processo…