Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Answer is most probably in line 15 or 16. Please show a full log with commands and answers from firmware.
-
Typical error is to still have a fan configured on pin D9 which is also the default fan pin. Disable fan feature or set it to a different pin.
-
I see. M84 sets homed to false as you could easily move position so they are not trusted any more. Now this would not be so hard if you did not also select to only move when homed. Another security feature preventing unwanted collisions. If you have…
-
The quick settings at top show only the currently active extruder. If you go to control tab you should see both extruders with temperatures in the right sidebar and when you click the temperature tab in control you must be able to see all extruders…
-
Ok, there is one other thing. Lets assume 7 would be the right pin. That analog pin has also a digital pin id which is most likely not 7, see melzi doc. If some other part of firmware is configured to use this pin as output it will not work as input…
-
It's never the bed that is so bumpy. It is the dependency from 8 geometric variables in nonlinear fashion that makes the extruder go up/down. Even the angles between towers have big influence. 0.1° error and it makes a bump. And it is nearly impossi…
-
It's planned to release today. Please visit our homepage in case server does not see this directly. Server might take a week to see the update but running the normal installer on the debian package installs it as well as upgrade.
-
Each extruder has a Z offset. extruder 0 should have 0 and extruder needs it set as difference in height to extruder 0. So just write that and store it in eeprom. BTW: In github the event system for felix printer also contains such a routine. That …
-
Yes, the middleware solution would be a solution to protect data until it gets send to printer. There of course it could be catched and copied. That would require writing your own host that gets such data and sends it. The repetier protocol sends d…
-
Das liegt daran das wir das für Touchscreen eingestellt haben und den Mauszeiger daher entfernt haben. Ist aber leicht zu ändern. Als pi einloggen und nano .bashrc eingeben. Ganz am ende steht if ! pgrep "xinit" > /dev/null the…
-
Tweaking the menu is in deed not easy. I'm not aware of a special cnc version of the menu but what do I know what users do.
-
So far it looks good 0:07:45.952: N1639 M106 ;Lüfter an 10:07:45.952: N1640 G90 now comes server added code 10:07:45.952: N1641 G1 X106.525 Y59.268 F6000 10:07:45.952: N1642 G1 Z0.620 F120 10:07:45.952: N1643 G92 E3.2510 10:07:45.952: N1644 G1 F180…
-
code=killed, signal=SEGV) -> it crashed. The pi zero uses the same processor as Pi 1 so you need the armel version of the server. The armhf version will definitely not work. So hopefully that is the error.
-
Ok 2.2" is really small.-) Not sure if smaller icons are a good idea here. It is possible to do but complicated as you need a new CSS file for the printer screen and that is described in branding printer frontend in docs section on our homepage. Fo…
-
Please see PM. In general before you reinstall a new sd card go to register and deactivate license so counter does not go up.
-
If you have several printers with same id you should use /dev/serial/by-path/... that it matters to which usb port the printer is connected. These are aliases to the names you have problems with but linux knows which one is which.
-
Don't think making a output input does any harm as inputs are just high ohm input. Have you set it explicitly to Analog input 7 or used Tempsonsor 0/1/2?
-
Did you wait long enough? It might take a while until host detects the connection is down and it will try even to reconnect. So you get here some blocking until network times out and returns failed connect. Had this at least with wrong ips and it ca…
-
0/def is when no thermistor is connected. So since you checked the type it most likely that you selected the wrong pin number.
-
That was where I just ran my test:-) Ok a derivate but same components. If you have no min endstop defined like your config shows, the only reason to not move down is that it goes below z=0. That also is verified by going down initially to 0 being …
-
Ok being curious I added your pause/continue code and did a print. Pause twice and it always came back to the right position a sit should be. You could enable logging and afterwards check if it moved to right z position from server side. If it does…
-
I meant write it like this: void PlotRandomMode() { if(Plotter::RandomMode == 100) return; //plotterstart if (Plotter::RandomMode ==1){ Plotter::RandomMode = 100; GCode::executeFString(PSTR("M5")); GCode::executeFString(PSTR("G28")); …
-
I don't have your display but I guess it is using framebuffer. So read carefully how to install drivers and what files to configure. For example /boot/config.txt contain # uncomment to force a console size. By default it will be dis…
-
Ok, so set firmware to Marlin and set correct baud rate. That should be all required to start communication. All othe rvalues can stay on defaults.
-
"The machine will send the repetier host by decrypting the password of this code" not sure what you want to say here, but is definitely not clear what you try. Host would send to firmware. So you need a new connector in host that does the encryptio…
-
That's good. Have modified my firmware to produce similar output for testing. Will be included in 0.86.0 if you enable heated chamber in extruder tab.
-
Parsing incoming data is done in GCode.cpp/h and depends on data format ascii or binary. Please also consider a) It is useless since you need to publish your sources according to license. b) Hosts will not send it correctly. c) The tiny processor i…
-
If nothing comes through it might be that communication crashed. Do you have an other power unit you could try? Or try without heating bed. If voltage goes down too much strange things happen on printer side that can have big side effects like this.…
-
Thanks for trying. Hope it works. For some reason I can not use my test windows system any more, so currently I do not dare to switch my good windows to it.
-
executeFString executes a complete action and only then returns. Since G28 includes many waitUntilEndOfAllMoves these moves should finish before returning. Maybe add after Plotter::RandomMode = 2; a Com::printFLN(PSTR("now homed")); to see if it w…