Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
I agree that this is mor esomethign for webprogrammers than non programming users. In your case all you want is a different css so forget javascript and add just your resolution, which is Display:12,5" 1366x768 HD, LED-Backlight12,5" 1366x768 Prem…
-
nginx also works on windows. But of course you can not get a valid certificate for any local web address. That is a limitation of certificates.
-
This is a bit tricky as there are so many versions and dependencies. I'm quite sure I have modified the download to already contain node_modules directory with all dependencies so it works. So please reunpack und omit the npm install part.
-
Z 10 or 25 makes not real difference. Did you mean with host or G32 as these are completely indiviual solutions with individual settings. For G32 it should do 3 rows if set as grid leveling. But Make sure to position points like in the image of the …
-
Thanks, somehow I forgot the double pin use be more likely:-)
-
That is the old touschscreen that is discontinued, but still included and working. For the new touchscreen frontend see https://www.repetier-server.com/customizing-printer-frontend/ and the chapter in the server manual for normal activation. Windows…
-
I have now tested this twice and never got any untypical reactions. Can you explain what exactly is happening if you exclude a active region? From the analysis nothing is expected to happen except not being printed.
-
Z10 = Z position 10 - so I meant simply go to Z = 10 before doing the z probe stuff. What is the endpoint error? You need to set probing reagon where you can reach it with probe of course.
-
This depends on the gcode created by your slicer and you can edit that any way you like. Depending on printer the one or other solution is better. So just add non waiting heater commands before the waiting ones to heat all at once.
-
As you see from wait firmware was finished with heating also it never reached 70°C. Why simplify3d does not continue to send I can not say. Maybe they are waiting for 70°C to be reached before sending the rest, but your heater calibration doe snot g…
-
No you should include #error Gets used in DisplayList.h where you think the #define UI_ENCODER_A 11#define UI_ENCODER_B 12 that get used are. If you then get the error message you know it is using these pins and not from an o…
-
SOunds correct then 11,12 for both. Add in repetier #error Gets used where you set the values just to be sure it is using these values. Should cause then an error message. But hten I have no idea what else it could be since you say in marlin it w…
-
If you home z max you can leave it on. Problem is for those using z probe as z min so they have M119 report z min. Then triggering of probe prevents moves down whcih could have been the reason G33 did not go down here. Normally 0.5mm correction is …
-
Please go down to Z10 before starting G32 or startign height map. If you start from top especially height map you get errors since you can not move to all xy positions at top without hitting endstops.
-
Yes, after all it needs to get to extrusion temperature at the end and if you print faster heating time is shorter. At some point this might be too short for fast extrusion.
-
I mean #define UI_ENCODER_A 33 #define UI_ENCODER_B 31 for your board. Only if we get alternating signals on both pins it changes to next. They build a change pattern and since you seem to get only 50% of the pattern you only toggle betw…
-
Best migth be to use the davinci fork from luc and report the error there if it still exists. That fork is optimized for davinci printers and it's special problems.
-
That is really complicated. At some point we also have to say filament is out, which is in my case the main reason for jam detection. It is what is happening in 95% of detected cases for me. I have to think about this as it is a non trivial change …
-
Just see my last answer was not set online: Ok, physical connection to arduino Due over serial port does not increase memory usage for me as well. Anything other unusual so that matches your new observation. SO maybe driver related and reconnecti…
-
pid overhead is negletible compared with delta computations. Delta computation does 160-180 times per second complicated computations including 4 sqrt computations. pid is nothing.
-
YOu need to find the places in extruder.cpp where temperatures get set and controlled and remove the mixing extruder condition there. Especially setTemperature, manageTemperatures and report tempertures should be checked here. I think these are the …
-
Wrong speed would cycle through all, just not at wanted speed. If you can only toggle the A or B channel of the encoder is not connected resp. wrong pin number set. In dev version these are in DisplayList.h for the different boards set. Make sure i…
-
Firmware uses steps as resolution so converting back gives rounding errors in float. Do not think about that.
-
For deltas use character displazs onlz with 20x4 chars. Graphic displazs take 0.1s per update and this can easilz be a perfomance problem then. Even on 32 bit graphic display can be a problem if you move fast through menus. With mega do not think a…
-
Encoders differ in pulse generation speed, so set #define UI_ENCODER_SPEED 1 with 0 or 2 instead depedning on what works better. 0 is slower whcih I think is what zou need.
-
Soon new version with new wifi management comes. Seems more stable and also permanently stores passwords for networks.
-
Extrusion is coupled to move distance not speed, so faster moves will extrude more. and no flow adjustment is required At higher speeds you might get mor slippage or need higher temperatures to keep ratio physically, so flow increase may be require…
-
For server it is importnat to select right firmware. Selecting repetier for marlin will connect but do nothing as repetier sends in binary format which marlin does not understand.
-
Use jam method = signal get low or high to use a simple switch as out of filament sensor instead.