Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
No and I'm not sure I will. But it easy to reorder the equation: adc = 4095 * rs / (rs + r2) now you have adc and want rs: rs=-(adc*r2)/(adc-4095) So you can compute resistance from adc value.
-
At least eeprom seems to work and communication pins. You can not say more from this, e.g. if all pins are still functional is not possible to say. But let's hope they are.
-
The chromium browser is used for the touchscreen on your pi. If you have none, you should disable it. If you use latest image see here: https://www.repetier-server.com/knowledgebase/prepare-for-prusa-mk3-on-raspberry-pi-zerow-rambo-einsy-board/ on h…
-
Ok, have uploaded Marlin 2 to my RADDS board (same eeprom type) and afterwards the repetier firmware and it was no problem. Until now if I had a problem I just changed eeprom mode between 1 and 2 and it worked always. Checkum can only match one of t…
-
Just add wires - always a few and test - until it stops working. Then you know where it was.
-
Measuring only the first layer can be a big error! If Z distance to bed differs left to right the first layer perimeter will be wider or more narrow depending on z distance. That does not really mean x changes over axis. Print a 20mm cube left and r…
-
Try printing slower and with fan enabled. If filament does not cool good enough I know it can distort the shape. Normally especially on edges visible. I do not think that slicers change position or extrusion for last perimeter. At to you have of cou…
-
And what issue was it you wanted to solve?
-
For mixing extruder it is different if you do a slicer retract with G1 E-xx or a firmware retract. Slicer retract will always retract according to mixing ratio. Firmware retract (G10/G11) will retract all 5 filaments the same amount.
-
Firmware uses same steps per mm over complete x axis. So from the signals it sends left and right should not differ in size. Of course steps per mm can change size but without difference left to right. Have you validated the slicer generated gcode …
-
If you use M190 to set bed temperature the firmware does not accept new commands. Only when the temperature is reached it will process new commands. That is normal. If you want other bed temperature set it in filament definition of your slicer, resl…
-
What is if you only have this 4th printer connected, does it work? I mean is the problem the printer it self or that it is the 4th printer? Check the devices in /dev if you get a 4th serial when it is connected. If it is identical to another printer…
-
Enable ack/commands and show a log of the problem.
-
Anything special you did? Do you have a webcam or often wifi disconnects? Normally the server is using maybe 20MB so either one action causes a memory leak under some conditions or you did something using much memory, also normally big tasks are don…
-
That is the uploader failing. Has nothing to do with firmware. stk500 is the protocol, but I'm not sure this is the protocol used melzi. When my sanguino was working I had a special uploader for that board. Might have changed in between. Also make s…
-
Könnte mit socat gehen indem socat die serielle Verbindung als TCP/IP Port anbietet. Hab ich aber nie probiert, ist aber theoretisch vergleichbar und sollte funktionieren. Wie du allerdings sicherstellt das socat immer wieder neu startet um den Port…
-
Check your HAL.cpp it should define stepperWait long __attribute__((used)) stepperWait = 0; // ================== Interrupt handling ====================== /** \brief Sets the timer 1 compare value to delay ticks. This function sets the OCR1A com…
-
Check with our interface in chrome. There you can watch the frames in developer tools. Possible reasons here is not authenticated or wrong printer name. Printer name is like you see in browser url or config file names, not visible file names.
-
Wei soll den da die Programmiersprache aussehen? Was wir allerdings planen ist das Fortsetzen von abgebrochenen Drucken, insbesondere wenn dies durch einen Verbindungsabbruch passiert oder auch Stromausfall. Also immer wenn die Verbindung unplanmäß…
-
Syslog ist zumindest die einzige möglichkeit diesen Fehler zweifelsfrei nachzuweisen. In der Druckhstorie sehen sie genau wann der Druck beendet wurde. Es ist damit leicht genau die Stelle in syslog zu finden. Sie können noch in /var/lib/Repetier-…
-
Also you have a code that is named homing there is no homing in your code. You also see that we do not send homing to firmware. So my best guess is that your firmware decided it is time to home so moves are executed as expected.
-
You can assign 2 drivers to each axis just by activating the mirror option in config tool. Then it asks for the second driver to use.
-
Config tool shows the mathematical equation for the type. No idea what your sentence with z axis should tell me.
-
You need to post the error message or I can not say why it does not compile.
-
Die Befehle die du angegeben hast führen nicht zu zum abschalten von chrome. Wahrscheinlicher ist das sie entweder das autologin abgeschaltet hat, was aber notwendig ist, da wir den Start im login des users pi haben. Dann hilft sudo raspi-config un…
-
In der art nicht. Man kann zwar einzelne Zeilen in den gcode models ändern aber so was geht nicht.
-
Hört sich eher an als ob du ein neues Image installiert hast. Sie mal hier: https://www.repetier-server.com/knowledgebase/prepare-for-prusa-mk3-on-raspberry-pi-zerow-rambo-einsy-board/ hast du RUN_CHROME auf 0 gesetzt? Oder hast du etwas am linux …
-
Still working during a test. Check you settings in Print->Structures->Skirt and Brim and make sure to select the profile which has it defined.
-
Normally I expect it to swing around 0 if done after G32 S2. Now your G32 result says bed was already quite square just 0,1mm height error at maximum and that gets corrected by correction. So a perfect plane bed should get all 0 values. You should h…
-
There is a easy and not so easy solution. Easy solution is using the upcoming V2 firmware: https://github.com/repetier/Repetier-Firmware/tree/dev2 The corexyz definition allows defining the formula in definition, so it will be able to handle all po…