Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
No, the slicer is still work in progress and planned, but currently you need to run an external slicer and upload the gcode. On the other side, so you are free to use any slicer you like.
-
Ok, I rechecked the sources and you are using latest version and switching back to ascii protocol is not what will happen if server is in binary mode. Not for valid commands and your combination is what I also use for testing without problems. So on…
-
Wear out of sd card is in deed a problem. So I'm not allowed to flush every write - that would in deed destroy the sd card quickly. I think about writing a continous file without flush, so os will flush every 4kb. Now I have to write enough that 4kb…
-
It is not designed to be inverted after compilation. Not sure why the trick works. It would move in opposite direction, yes, but would not check the right endstop I'd think.
-
2.1.2 is host version and not the Firmware! I also do not mean eeprom but the sources of the firmware you used to compile the printer firmware. An other solution would be the twist the x axis endstop cable and also to twist any motor/heater cables r…
-
Install ffmpeg and in global configuration set the path accordingly. Then you can rerender the movies.
-
I don't think it will work out of the box. It works on linux, but chromebooks are quite stripped down versions of linux with some modifications I can not oversee. And host requires quite some resources and chromebooks are also low on that normally. …
-
Sure you are using the right pin? Also make sure no other function uses the pin and sets it as output. One thing that can make a difference is having pullup on or off, also for electronic components off is normally correct and should at least show a…
-
Ok, so oppsite direction. This can be tricky if your z endstop triggers 2.5 above bed. First question is if you can still physically go deeper without damaging the sensor. Then you need to have disabled endstopcheck for normal moves and next you nee…
-
The problem is not the few gcodes. I would require a complete redesign of everything showing running print in server structure. We have no time estimate any more as that is not delivered from firmware. So we need to change it to %done without eta. …
-
The extension only supports E0-E2 at the moment. The next firmware generation V2 will get a more general solution which @alexsomesan is already working on.
-
Interesting idea for a future version. For now you would need a parallel script testing the pin and then send the pause via wget, which is surely nothing normal users could do.
-
This is only a marlin compatible visualizer. In Repetier-Host there is a similar function bed height map that you can use for our firmware. You can connect it to our server running on a pi if you can not connect to windows directly.
-
This picture happens typically if you have cross talk to x axis. One simple solution and test would be to disable endstop test during printing. In repetier-firmware this would be ALWAYS_CHECK_ENDSTOPS which you would set to 0 in configuration.h. Co…
-
There should be mor ein log if you enable all flags. Problem might be baud rate. Could it be that they use 230400 baud? They are so close that the wrong works a bit. If not please provide a more complete log where it happens. In printer menu you can…
-
Send M115 in console to see your firmware version. I think it is a dual error - firmware not accepting it without checksum and server not using binary version here for M531. A fix at any side should work and I think I already fixed the firmware sid…
-
I know that the software OpenGL in windows is very likely to crash host and if not it would be unusable slow for normal models. In any case you need to select the slowest rendering method which all that might work. Buffers and VBOs will not work.
-
Seems like a problem with strings in command lines. These contain no checksums in ascii mode, on the other side if you have set firmware to repetier it should send them as binary. At least I expect this. Will check for the update. But anyway, what …
-
Remove printer, check available ports in printer settings. Connect printer and select the port that was added at this moment. On mac it depends on the usb port you used, so plug it always in the same port. Select right baud rate and that's it.
-
Normally you can go to your router into dhcp settings and say that device should always get the same ip. How depends on your router. No need to do it in linux the hard way.
-
In general 5 printers are no problem. This mainly depends on the stability of the usb/serial connection. If these get disconnected by linux (happens when pi gets underpowered) or the communication stacks due to some transmission errors/electric nois…
-
You can not attach files, so copy/paste the log. Please enable also ack and commands so the log part is complete and start log where the problem starts, not in between as that does not allow analysis of how the error started.
-
In motion.cpp you see when it is turned on #if defined(SUPPORT_LASER) && SUPPORT_LASER else if(Printer::mode == PRINTER_MODE_LASER) { p->secondSpeed = ((p->delta[X_AXIS] != 0 || p->delt…
-
Yes, log is communication printed in host/server. ISP also connects to reset pin. If this would cause it to trigger when not powered it might make a difference.
-
Some beds distort when hot or are already distorted when being cold. Some printers bend down to the center from the weight, especially if head is heavy and linear guide flexible. Head can also rotate a bit. There are quite a lot of possible reasons …
-
So server is installed on a windows machine, right? So if you install host there you can see in the menu if server should be running or not. If the website does not come up it might just not be running. Also have a look at C:\ProgramData\Repetier-H…
-
The idea of repetier-server is not to use sd card any more. This allows us better analysis and gcode view, excluding failed regions, timelapse per layer and more. With sd card this all would just reduce to a percentage view and void all these functi…
-
It depends how you have compiled firmware. You can set it to do it over the printer lcd, then it blocks communication. Or you say to just request a pause from server and then it blocks not and waits for server pause instead. Sounds like you opted fo…
-
In that case just enable laser mode M452 but do NOT enable it with M3 S255. Then when gcode contains an increasing E that move will be done with laser enabled, otherwise not.
-
You can set fan speed in the startup script quite early. If you need it even earlier, you have to write the initialization for this on your own.