Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Yes 20 is default value. You can change it in the configuration. Online it is not changeable.
-
You need to update firmware to a version supporting that command. Older firmwares might not have that command. If they do not have the command, server just can't control it. Recent Marlin, Repetier-Firmware and RepRap Firmware are known to support t…
-
You need a user defined thermistor table where you multiply temperatures by 10. That should be all needed.
-
Interesting idea. Will test if it is doable. Amin problem is that not all screens are possible for all printers. Think of console which works only on active printers. But I like the ability to quickly switch between printers. Or a left swipe shows p…
-
Adding it there will add much communication all the time. So that is not really what I'd like to do. Maybe a separate command so it only gets queried if really wanted.
-
Sieht ja krass unterschiedlich aus. So was hab ich noch nicht hinbekommen. Kannst du den erzeugten gcode mal posten (pastebin reicht). Damit ich mal testen kann ob es bei mir klappt oder ob ich was merkwürdiges sehe.
-
What does that mean? Which of the 4 slicers?
-
On windows 10 system we have button to fix it using the netfabb autofix that windows 10 now contains. Microsoft also offers this as a web service. Doesn't host show the url of the service if it sees non manifold?
-
There is no start time currently. Next version will have additionally "printStart" which is UTC start time in seconds since epoch. All you currently can compute is estimated time left and based on this the finish time.
-
Kannst du mal ein Bild posten wie das falsch aussieht? Einfach geht nix als aussage ist hier leider wenig hilfreich. Ob der code im erzeugten gcode drin steht oder beim server als start gcode sollte keinen Unterschied machen. Wird gleichermaßen ges…
-
Sorry but I can't say much about that version. I have fixed and added so much since then that I do not know the state and won't fix it as well. As I said 1.0.4 is where fixes go. If you send compile error I might help getting it to compile or even…
-
Solange du keine Kommunikationsfehler im log siehst liegt es nicht am pi oder der Verbindung. Du bist diese Woche der zweite als ob Cura 4.0 jetzt was anders macht. Hast du mal versucht mit einem anderen Slicer zu slicen und zu drucken, nur so zu Te…
-
Was ist die Frage dazu? Das ist die Verbindung mit dem Drucker und sieht super aus was ich sehe. Marlin, Kommunikation klappt. Sollte also keinen Grund geben warum er den Job nicht senden kann, wobei das macht er ja. Die Frage ist nur ob es dabei Pr…
-
Make also sure the display has pin settings for that board. Most displays don't have special melzi pins. DisplayList.h defines them.
-
I only have a printer with slip detection that will not work with dry run, so not sure if it gets tested. I think it will not work in dry run as there is no extrusion and I'm quite sure only during extrusion it will test the sensor. You need to put…
-
You mean the print finished and out of filament messages? No switch for them at the moment. Maybe an idea to have a switch for it in future.
-
Solange du nicht am flow regler im server spielst und flow bei 100% lässt sollte der Druck identisch sein. Wir schicken die Daten ja 1:1 rüber. Testhalber kannst du echo aktivieren in der firmware M111 S7 und im Server logging und dann hinterher im …
-
I see CNC_SAFE_Z is come configs but is no where used:-( I talk about dev version (aka 1.0.4 at the moment) It defines park position #define PARK_POSITION_X 0#define PARK_POSITION_Y 10#define PARK_POSITION_Z_RAISE 10 and also has them in eeprom a…
-
- Jam method -> When signal gets high (or low) is what you want. Show jam/out of filament... (requires LCD)" mean printer has a controller (LCD) under its control. So that is not what you want having no display. You need "Request pause to ho…
-
As I said set in eeprom parkx and parky to 999999 and park raise z to 1. No changes needed in that case.
-
Heere is the pause implementation in dev version which I hope you are using as it is the only one we make fixes for. void SDCard::pausePrint(bool intern) { if (!sdactive) return; sdmode = 2; // finish running line Printer::setMenuMode(MENU_MO…
-
It's been a while ago I fixed it so not 100% sure with relative or absolute. There are also cases where this comes form slicer with intention. Knowing they leak from pressure they stop extruding. If you enable travel moves you then should see a li…
-
No travel moves is not possible, you always need to go to a starting point. If you have models that can be printed with only one perimeter over full height, slicers have a vase mode for this. They will increase z slowly so you get a spiral like pri…
-
Please check #define Z_PROBE_BED_DISTANCE 5.0 // Higher than max bed level distance error in mm Z_PROBE_SWITCHING_DISTANCE is for repeated measurements, Z_PROBE_BED_DISTANCE is like a minimum distance to bed and target height for G32 and G33.
-
Yes, looks the issue we know. Happens with relative extrusion under some conditions causing host to think there is no extrusion. It will not affect the print, so nothing to worry.
-
See https://www.repetier-server.com/manuals/programming/API/index.html The methods you will need are createUser and deleteUser and maybe List userlist and updateUser You can easily make a small software that maps your list to all server instances.…
-
No it can't be done. Temperature is send in parameter S which is an integer. Only solution would be to change temperature scale by factor 10 to 310 means 31.0°C. If you adjust the temperature curve accordingly and set temperture in slicer as well t…
-
Good that it works also I do not really understand why. At least in the following block it should overwrite the value with N value from gcode. But the fact that it works should be good enough since server uses always same M110 command I think. You c…
-
So your button is higher then the bed? I understand that this is a problem. Solution would be to treat is a z probe. Z-probes also trigger before bed is reached and firmware uses z probe height to compensate the error. So set z probe to same pin, h…
-
Yes you can say that. That mirror means sending same signals (mirror) to other motor. So context makes the sense.