Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
You can use server and connect to it with host. In connection in host there is a server connector. That way you can also close host and print continues. Lately printers seem to get picky about where they work. Both do more or less the same thing on…
-
I hope you have something like {IF_BED}M190 S{BED} in your start gcode? This will use the hottest bed temperature set in the filament configuration you use. If this is 0 it will not add the line.
-
Direction set wrong? Up means distance bed/extruder increases. Some printers move bed others extruder so it is misleading to define it other. So hope you meant this definition.
-
Tested with 2mm and only get 5 lines for infill per cm, so that seems to work. Make sure your perimeter width is a multiple of the diameter so it can fit at least 1 line otherwise it might reduce width. CuraEngine uses same width for everything.
-
Do they use stock firmware or a adjusted firmware to allow all these tools? Which firmware. If I remember right you can already switch the modes in our firmware in setup.
-
It's not running all commands because you power off the printer before it has finished executing them. Otherwise they would execute of course.
-
That is correct. It is only on or off. You need to write a event handler to convert speed setting to pwm on your own. In V2 firmware there will be hardware pwm support and mor eoptions so it will work there out of the box, but that version is not re…
-
drive min should not be the problem. Only the fact that you seem to not get over 25%. With high drive min you might get problems with lower tempertures. YOu now just force the high value also max is even higher and was no real limit.
-
I meant the sleep 10 in the disable command you call. SO not inside server. You must ensure the printer gets disabled after print has finished.
-
Host does not reconnect so this must be the firmware restarting all the time. Did it work before you updated firmware?
-
Looking into the statistics the host parser seems quite in trouble with the gcode. Can you post the gcode to verify? Some computers have problems showing full gcode especially over terminal viewer this seems to be a problem.
-
Arduinos do not store teh gcode (only 8kb ram) so they forget a line after parsing it. You could write a own gcode for the repeated task if that is so important. Then only send the gcode for task instead. G-code generators should be able to add the …
-
Wenn sie 50mm bewegen ist die bewegung immer gleich lang? Dann sind die schritte pro mm einfach falsch. Diese müssen im eeprom eingestellt werden, genau so wie beschleunigung und jerk. Wenn sie das in der configuration machen hat das erst mal keine …
-
You mean you have 4 outputs not 3 like ramps 1.4? You need to select the right pin name then directly to get it working and make sure no other function uses same pin. What is the error message? 91.8 is very old and not supported any more. Fixes ar…
-
In recent arduino versions you can simply use the original board. It was the 1.0 branch where this was required but 1.8.x with 1.6.11 boards version does not need it.
-
That looks wrong. You have set pwm max values to 255 but even when heating is low it seems you are only using 25% of the power. Is this correct? If you set heat manager to 0 does it also limit to 25% power? There it uses PID max value and that is ac…
-
In Extruder tab uncheck the "Create ooze shield" option.
-
Most likely because slicer does not know about it and just not adds a T1 in the gcode to switch.
-
I explained it already at the top:-) Firmware buffers commands and therefor server does not know what is already executed. So we fill it with commands we do not care about to be sure the wanted commands were executed.
-
You could forget about the sd card (not sure if it could work as it requires 5V and has level shifter while due is 3.3v). Use the expansion pins to the side to connect display, not the display port. The Sparkcube graphic display does exactly this w…
-
Yes, I guess it is the disconnect of printer before handling is finished that makes them wail. You could try adding a sleep 10 in your shutdown script to give server time to finish regular close.
-
Ok, see the problem. I had tested the webcam from top toolbar which scales well. Will fix it for next release.
-
I'm pretty sure server does not reorder lines. All firmwares would complain a missing line number. I also think it might be tty0tty reordering the 2 lines send. Only way to be 100% sure is when I have next release running with pipe support. Line nu…
-
Cura is a standalone. You can of course always import sliced objects. For server there exists a Cura plugin to upload files from cura 3.1 to server directly.
-
You see power does not get up as required. Typical reason is that drive max is still on 130/180in configuration limiting the I part of pid controller. Increase that value to what you need.
-
You need to change steps per mm in eeprom editor in host/server not in configuration!
-
Versuch mal ALWAYS_CHECK_ENDSTOPS 0 for xy. Könnte sein das du Übersprechen hast und daher der move vorzeitig beendet wird. Z achse hört sich nach schrittverlust an. Max. Beschleunigung 50 and mx geschwindigkeit 5mm/s setzen und z jerk 0.2. Dann te…
-
I don't think grbl can do this either.
-
I just said that you have ti put it BEFORE the 30 G4 to make it work, Please read my answers.
-
If fan 2 is defined in extruder as cooling fan you can not control it with M106. It gets controlle dby extruder temperature. If you defined it twice as cooling fan and for fan 2 they will disturb each other.