Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
You have successully installed it from from output. The problem is that linux changes so fast over time that depending on your distributaion and version some parts fail and others not. Try starting it amd then look further what might still be missin…
-
What is the error you get on startup if starting from console?
-
Then it might be the intel graphic card not working with OpenTK. Try 2.0.2 and in 1.6.2 you have 2 other versions one with legacy OpenGL library and one with newer version. One of them might work. If none of the 3 works I'm sorry that this is not su…
-
Always on https://www.repetier-server.com/download-repetier-server/ in the changelog button you see the changes over time.
-
Make sure to assign the 3 points as in the picture of config tool. P1 left front, P2 right front, p3 left back. They build a parallelgram and that seems to be the problem here.
-
Try setting graphic card energy to 100%, no saving. Some laptops seem to not use OpenGL in lower modes and so the test return the generic microsoft driver which does not work and causes crashes of the host.
-
When I see the table shaking I just think the motor wires are not connected correctly. Either only one coil gets power then it just jitters or the 2 pairs are connected wrong and something unexpected will happen. Maybe you start with unmounted motor…
-
What windows version are you then using? Clicking on the triangle on the right shows all printers and clicking inside lets you change the name so it gets stored as that when you hit apply.
-
ETA/ETE are internationally known and short, which is why I've chosen them. ETC would not be understood and of/to completition is not visible in the short form.
-
Make sure you have seleted delta as printer type. Also after upload try M500 M502 top copy values from configuration.h to eeprom so these are used and not what you stored from previous uploads. If motors make a screaming sound they are loosing step…
-
Ok, have tested uploading on target printer and the one using target an dit worked without issues. Only thing was that it got rendered twice, which I have fixed for next release, but that does not cause the error. Can you show the complete log (dro…
-
Min speed depends on acceleration, so reduce travel and print acceleration and min speed gets reduced as well.
-
At a first look I'd say uploading from a printer not being master storage is not working correctly. I have to test this. Th eother question is if that makes so much trouble that a print stops.
-
And what about the slow z move test?
-
See personal message
-
1 and 2 will work, 2 is best choice for speed.
-
Thanks for submitting. It was a certificate that needed to be replaced. Should now work.
-
Yes, temperature is a interrupt method and we average temperatures over many results to rule out single bad readings. If temperature only changes a bit it sounds like steps change reading. While z axis has many steps this affects z moves more. So i…
-
Should not happen on a upgrade. If you mail us the license code we can reset it for you. But please do not post public here.
-
Any pin not assigned to any other function should do. Years ago I noticed that some pin numbers were wrong, not sure if that has been fixed. In ui.h you see how keys get queried: #define UI_KEYS_INIT_MATRIX(r1,r2,r3,r4,c1,c2,c3,c4) if(c1>=0){SE…
-
#define EXTRUDER_IS_Z_PROBE 1 means the nozzle tip is the sensor, so you have no offsets to use. That is not the case here, so set it to 0. It has nothing to do with being detected or not.
-
CuraENgine does not enable or disable any extruder, so if that happens, when and how depends on the start/end script you wrote in CuraEngine settings. There is a button to create a default version as starting point.
-
That should be enough free ram to prevent out of memory. Question is then why doe sit only overwrite temperatures for you. It may depend a bit on what functions you have as this changes what is stored where. The problem is for your z move the only …
-
It is no software bug. It is how this pid tuning works. In the code part I shows you see it uses results from previous iterations to adjust. So heater off is not off just lower power - and in your case enough to not go down to < 100 which is why …
-
Since you can not run automatic measurement it does not get activated automatically, so you need - M323 S0/S1 enable disable distortion correction P0 = not permanent, P1 = permanent = defaultto enable it. Then go with z below the 100…
-
Your action function is configured wrong. It should function some_foo(printer, data, result) Then you see that your data was in reality the printer definition, which is why have slug there. data is the object you attached in javascript in RSCom.se…
-
The current position you poll is always the position if all moves are finished. Moves only contain delta informations, so they never know what positions they are at. You would need to maintain a update of position in steps to do so, but that would o…
-
I always send G33 L0 to get the list and copy the output. By design it has exactly the format to restore it, so you just copy your z values to coordinates and do the paste then.
-
As fas as I know polarity is important to mosfets. They only work in one direction.
-
Where do you have #PINS_H ? In pins.h it is not ther eyou only have #ifndef PINS_H#define PINS_H at the beginning. Did you delete the define somehow?