Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Only if you have no other problems. #define XAXIS_STEPS_PER_MM 80 #define YAXIS_STEPS_PER_MM 80 #define ZAXIS_STEPS_PER_MM 400 Is what defines steps per mm but as I said in eeprom you can simply override it to the correct one.
-
Da die CPU last eher gering ist nehme ich mal an das die Webcam auf zu hoher auflösung/Wiederholrate eingestellt ist. Die PIs sind nicht gerade Geschwindingkeitswunder wenn es um Datentransfer geht und MJPG streams sind zudem nicht die kleinsten. 64…
-
In repetier-firmware you would set decouple time to 0 to indicate it should be disabled. Don't know how other firmwares do it. But it is better to find why it decouples as it is a safety feature! If it happens so late it is often a fan kicking in c…
-
Yes, in config tool you enter the default values used if no eeprom is available and also first values for eeprom. So just put the values in extruder definition.
-
Login with ssh and edit .bashrc nano /home/pi/.bashrc go to the end and put a # before the xinit near end. xinit starts the xserver with chrome.
-
Firmware has some debug flags that can be added and build debug level. This can be set with M111 - M111 S - Set debugging option. Add values for wanted options: 1 = echo commands, 2 = info, 4 = errors, 8 = dry run mode,…
-
Only thing you change is steps per mm to match the high step number. The number of microsteps is set on the board by switches. The steps per mm can be change din eeprom directly, no need to recompile.
-
Reduce z probe height by 0.2 and redo G32 S2 to make ist start 0.2mm higher.
-
You need repetier-server for this on mac. EEPROM editor on mac only support changing values.
-
Check endstops are not triggered with M119 also make sure you have selected the right core xy system.
-
Good question. Haven't touched the ui code. 20x4 display on my delta is still working with radds.
-
That means the direction pin is not working. If you have a free motor socket use that instead. It is either a wrong pin number or a hardware defect, bus as I have no other reports about that I assume a hardware problem.
-
No problem. Hope my guess was right so the fix works for you.
-
I agree that this part doe snot show anything useful. But when exactly did the restart happen? To me it looks before the beginning of the shown part as it starts with Apr 21 14:53:08 Repetier-Server dbus[261]: [system] Activating via systemd: servic…
-
Yes, that is the major change in 1.0.2 that I now use a new version of SdFat that natively supports long filenames up to 26 chars by default. Had tested it on 2 boards and it worked there, so I commited the change. It might be a speed thing. Look i…
-
The uid missing is the base object for lcd display. Do you have a printer without lcd? In that case deleting lines 2376 and 2286 would at least make it compile again, also there should be a safeguard to not use the function if it is not enabled.
-
Yes the triel just means you have no license but can use all pro features. You need a OEM license installed first than you can convert the cheaper OEM in a full pro. I send you the link in a PM.
-
Looks good so far. One thing you need to watch out is that internally we use slug and not printer name to reference the printer. So make sure slug is also MyPrinter and not MyPrinter2. You see it in some URLs and also if you call "/printer/info" on …
-
Yes that is right direction, but you also need to check encoder to get it fully working. Timeout will disable babystepping after a while and go back to main menu if not disabled. But that might be good as it does not always need to be enabled.
-
You should enable firmware to include line numbers. Makes debugging easier and also improves communication as we can then see if we missed an ok. Did it move to park position and disable motors? With the timeouts at the end it seems the firmware ge…
-
You can use M290 - M290 Z - Correct by adding baby steps for Z mmbut it will always have a delay of the buffer until it takes effect so not best. Encoder only can be done if you can program, also a bit hacky. Make the click select b…
-
Depend on what you want. Do you want the reagion be reachable, then set xmin to -27. Do you want also to start at 0 above bed then set "Endstop distance after homing ENDSTOP_(X|Y|Z)_BACK_ON_HOME" in config tool or configuration to 27.
-
Ethernet will be a good test as it is definitely stable. Since we do not know the reason we are currently searching what triggers the problem. So if this happens only while viewing a special info screen or anything else unusual that you do might en…
-
Yes, should all be in master version 1.0.2 and configurable in config tool.
-
Did you have the Pi 3+ ever running e.g. with a image from pi foundation directly? Just to rule out that the pi is defect.
-
Did you buy a upgrade license instead of the full pro version? You can send us the license number if unsure and we can send you a link to buy the required OEM to convert it in a pro if that is the case. Please do not publish license here!
-
The only case where you get no problems will be in vase mode where the object consists only of one perimeter. In all other cases this will normally not be the case as there is a fixed procedure outer perimeter, inner perimeter then infill so a jump …
-
Seems like it gets the exception when trying to load the sample object. Normally it works but seems in your case not all variables are initialized when it gets called. Need to check this but would say ignore it if you still can load objects after th…
-
23:51:05.995 : Z-probe:4.37 X:20.00 Y:20.00 = P123:51:12.672 : Z-probe:4.72 X:100.00 Y:20.00 = P223:51:19.454 : Z-probe:4.69 X:100.00 Y:100.00 = P3 are the used points. P3 should be 20 / 100 so they span a square.
-
Same display settings should work in 1.0.2. Uses same scheme only predefined configs are moved from ui.h to DisplayList.h but syntax etc is unchanged.