Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Both together are the config, but normally you only need one print profile and 2 filament profiles - one for pLA one for ABS. In right tab you select for extruder then which filament is loaded.
-
Please check uiconfig.h carefully. There is already a flag for SH1106 U8GLIB_SH1106_SW_SPI that can be used. You find constructor in ui.cpp if you need to compre more closely. That is also where you need to add new constructors if needed.
-
What firmware? Normally you can set z steps per mm in eeprom editor in host. Which might also the reason changing it in firmware doe snot help. It uses eeprom values.
-
Run G28 G1 Z0 F600 Then nozzle should be at bed level. If not it is configured wrong in firmware/hardware. Don't know A8 only know they do not use our firmware, so can not say much to that error. Normally endstop not calibrated correctly or if you…
-
It doe snot detect it as marlin clone since it does not contain the marlin id string. I thought I had added it to the list for 2.0.1, but maybe there exist different strings. What does M115 return in log? When I know that I can add it for next relea…
-
No they won't. Printing from sd card bypasses the server completely. That is why we do not support sd printing server side at all. You loose all advantages of the server.
-
Slicer manage ris to configure different slicers - that is the completely wrong place. Select CuraEngine profile and hit configure. Then you can configure as many profiles for that slicer just as I described.
-
Size looks correct. Manual control is in 2.0 a bit bigger but you can not change that. You only can slide the divider to left a bit so it fits in width.
-
We can reset it for you if required. You also have 5 licenses so 1 such error is normally no problem. If it becomes one, mail us your license code for reset and we reset all activated licenses.
-
Yes, that is surprising. Did know that we override this, but not that it does not work on other settings.
-
Try ip:8090 which should open it form mjpg_streamer directly. If it does not not work there it does not work in server. Server is just a proxy for the stream from that software. I have now a pi cam working for several month without interruption of …
-
You normally define different filament configurations for each type and select the proper profile. Thats normally enough but you can configure as many profiles as you want for filaments and print settings and switch between them.
-
You can with current 1.0 version. t is in setup menu I think.
-
@skippyq96 You are talking about windows or linux version? Mac has no curaengine.
-
It can happen. BLK appears if stepper interrupt needs to start next segment but it is blocked since it is still being computed.
-
Open eeprom editor in your host and increase max. z. speed.
-
You can only print gcode, so yes it works only for gcode. What do you mean it should also work for?
-
Yes, with event system you can write such things easily. It is described in event.h how it works but if you are not so familiar with C++ and preprocessor macros, which are used to implement it it is much harder. When I get time I need to write a lo…
-
That is not the url you should run on a remote. That url is specially designed for a printer mounted display and gets more right. Also if you have no users that should still show up as well. An other way to use this frontend remotely would be to us…
-
Good to know. We do in deed need a digital signal so analog modus is a bit unpredictable here.
-
Check it in ui.h or displaylist.h for 1.0 version. Each controller has a section setting pin numbers and at the end 2 functions handling the keys.
-
You need to show a log where the error starts to say what goes wrong. Here you are already 100 lines after the initial error. (N1860 M105 is alread send while 1773 is last processed line according to firmware) What I see is you also enabled busy wh…
-
What firmware are you using? Do you have eeprom enabled in firmware, which is required to store changes.
-
What is the problem? Does dropdwn not open or can you not select lines in dropdown? Have no windows tablet only mouse controlled and there I can change printers as I like.
-
You mean like - M401 - Store x, y and z position.- M402 - Go to stored position. If X, Y or Z is specified, only these coordinates are used. F changes feedrate for that move. Ok, only 1 memory space and no list of position. I would not store these …
-
Set ALWAYS_CHECK_ENDSTOPS 0 If you have crosstalk from endstops this can also cause a stop in direction and this happens more often then you think. So disabling the test prevents this type of shift.
-
BLK is nothing you should ever see. This can happen if you have too many small segments in a row so the firmware is not fast enough to refill queue. If you slow down your print it should get better as this gives you more time. Or do not generate so …
-
Why do you want XWindows to run it headless? It is a server and has no output to x windows system. All you need is a webbrowser that calls http://ip:3344 (also for our image you can omit :3344). The pi is not fast enough to also start the x surface …
-
1. Host does not read positions from firmware output. Also firmware is always right host might have already send commands making the position wrong, so we can not safely copy them. If you do a G1 Z100 you always have both in sync as you made a absol…
-
Is transfer protocol autodetect or ascii? Marlin does not understand binary. 127 buffer size should be ok. Also baud only needs to be set in host - device manager is not relevant.