Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
No config attached!
-
So you want a menu entry? Well that requires manual changes in the code but is possible if you can programm. But this is such a special function that I will not implement it in the mainstream version, sorry.
-
Yes it is possible, normal gcode file to call. Only problem is the key press. Users normally use - M226 P S - Wait for pin getting state S. Add X0 to init as input without pull-up and X1 for input with pull-up.with the pin for the ok…
-
G28 Xz must by G28 X0 Z0 Test your endstops with M119 If z endstop is triggered in move direction, the z move will be ignored and hence no sounds will appear. This might also happen from crosstalk e.g. from x stepper. One other reason not to move mi…
-
Do both rise or both show exactly the same temperature? In later case you have selected same heater output and thermistor input for bed and extruder. They must differ. Extruder gets 0 and bed 1 index.
-
See you found the messing #endif
-
They should be simply there. In mac I have for example /dev/tty.usbmodem14631 on repetier-server, host would show only usbmodem14631 I think. The thing on mac is that the name depends on the usb port you are using. But normally you need not do anyth…
-
No the tool can only get settings from an old conguration.h also generated with the tool. Since firmware is GPLv3 licensed, your vendor must offer a download of his modified version on his homepage. That would be the right starting point. Did the or…
-
How did you get your first firmware on the board? I was assuming you did and only need to check the value. Unfortunately that value can not be changed through eeprom.
-
First, please update server to 0.86.2 or you might loose your printer configuration at some point. 0.82.2 fixed that problem. Regarding extrusion, please update to 2.0.5 where we already improved how we do it. Now we send something like this: 09:3…
-
No you can not add a text file in the way you want. One solution if printer is still connected would be sending @message Some comment Which shows the message in the top nav bar as message (like print finished). Stays until server restart but users w…
-
Bluetooth or serial should not make a difference. Firmware must always send the same response on M104. So first question is what does firmware respond with in your case? See file log for the answer. Should contain something like T:xxx @255 .... Sec…
-
At least I would try increasing acceleration to 2000 and maybe even MAX_JERK to 30 or 40 if your printer can handle this. Since deltas normally have light heads due to bowden setup this is normally no problem. But both changes reduce required buffer…
-
In configuration.h of firmware #define ALWAYS_CHECK_ENDSTOPS 1 should be #define ALWAYS_CHECK_ENDSTOPS 0 but better you change it with config tool. Searching without my spelling error might help here.
-
Sounds like you have already an old ruby version somewhere else and that gets found first. Try ruby -version to see which ruby responds first.
-
Great, so it is clear where it comes from. What is your acceleration? As I said with higher acceleration it is also possible to print smaller segments. But main problem will stay models with such a high resolution that it creates to many small segme…
-
Open firmware eeprom in host and set xmin to -15mm to move printed part 15 mm to the right. I guess cura slices for 0,0 at the edge so if that start 15 mm to far left you should make x home position -15 so 0 is at bed start.
-
OK, connecting lcd/touchscreen is a installation problem I can not help with. Vendor should have documented how to do this and in case needed provide the right drivers.
-
Ok, so you already have a good rate of commands. Have you tried printing a simple cube? Just to rule out one of the reasons I told you - models with many small segments.
-
Sounds like you need to set ALWAYAS_CHECK_ENDSTOPS 0 to prevent that z probe which triggers before bed touches stops the move early.
-
I know spaklab uses them and have compiled a kernel that works also with serial ports on nanopi. I think that was the main problem. The rest should work just as any other linux version.
-
Bed coating increased could make it go not that much down. Not sure what is taken into account in 0.92.9. The first 2 down moves are normal z homing. Then it might go back a bit and adds some corrections from rotation and bed coating. Just to be sur…
-
The strange thing here is that there is zero response from firmware. So from that point closing connection and telling it does not work would be correct. Server requires a response pretty soon after connecting or sending commands or it assumes there…
-
In that case it won't work. Slic3r will drop objects as you have seen so you need this grouping. Which requires that both parts are already positioned, so second one must have the right x,y,z offset in its file, so grouping them show them as intende…
-
You can not get speeds where quad stepping gets used, so on or off makes no difference. What software do you use to send the gcode? Please try repetier-server without Ping-Pong mode. That will use the fastest possible communication over usb, just i…
-
Virtual printe ris just for playing and not for realistic speed simulation. If you print over repetier-server connected to virtual printer the timing is correct if I remember correctly. A pur host solution would be to reduce communication speed. Tha…
-
See these jam related commands: - M513 - Clear all jam marker.- M602 S P- Debug jam control (S) Disable jam control (P). If enabled it will log signal changes and will not trigger jam errors! - M603 - Simulate a jam- M604 X Y Z T - Set jam detectio…
-
It's called in printer.cpp. But you need latest dev version!
-
In object placement drag on the right side using the blue titles one on top of the other. Then they build a group and they get positiond exactly like designed by exporter. Then slicing should result in what you want.
-
To get a fluent print buffer must be kept full and model/gcode must not consist of too small lines. You should optimize subsegments and buffer to use the ram such that you have only 900 bytes free ram with at least 16 buffered moves. Better is a RAD…