Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
G32 just takes a plane that reduces the average error to a minimum. But that still means the distances are in some areas higher and other lower. A trick that works if it is not that bad is also to use a higher first layer like 0.3mm. That way the di…
-
Ich vermute du nutzt noch ein älteres Image. Da haben wir die grafische Oberfläche mit dem 1. Login durchgeführt und ihn auf autologin gesetzt, aber wenn man updates installiert setzt der pi das zurück. Dazu einloggen (ssh oder direkt) und sudo ras…
-
What does your firmware respond on out of filament? This has changed over time so guess this is something new that host currently does not support. When it sen enuquing M600 in the past this meant it was blocking internally and run M600 locally. So …
-
Have you checked if your bed is completely flat? Use a opaque rular you put at different positions and use a light from behind to see the gaps. In case it is not that flat as you think you can use G33 distortion map to correct for it. Also not that…
-
So you had #define ADC_KEYPAD_PIN 4 which is equivalent to D58 just as analog input? Guess you already say in DisplayList.h this section: #if FEATURE_CONTROLLER == CONTROLLER_ZONESTAR // Keypad#if !defined(ADC_KEYPAD_PIN) || (ADC_KEYPAD_PIN < 0…
-
Zuerst die ganz einfache Method - steck ein ethernet Kabel dran und er ist in deinem Netz. Ansonsten startet das Image (nehme an du nutzt das image) mit dem Pi als access Point. Verbinde dich also mit RepetierServer z.b. mit handy und rufe http:10.1…
-
From the results I also think that something with E2 step pin is damaged on board. Maybe just a soldering or the pin on the ARM is defect. Have added a warning for cold extrusion prevented.
-
In configuration extruders like all C++ arrays start with 0. On eeprom we use names starting with 1 which is more natural to normal users and also matches much better to extruder numbering you see in most host softwares. So that is intentional. Whe…
-
Activate logging and see what it contains for the started print. I assume server is starting print and it is just not happening what you expect?
-
Looks like the lowe rimage is rotated 180° compared to top one. The keys come from an analog input so that would be the ADC marked pin I guess which would be D37 in upper image. You need to enter an analog pin number here. Problem is D37 is not an a…
-
> Danach den Dienst neu gestartet und die selben Dateien erneut in den Upload Ordner geschmissen, alles gut. Heist das du benutzt Repetier-Server Monitor zum hochladen? Sieht aus als ob Windows die Datei beim verschieben nicht verschieben kann w…
-
It says max distance because if you start G32 higher than that it will lower to that value. But glad it is now working all correctly.
-
I see you are changing EEPROM with something like Repetier-Server. Once firmware is in failure mode and requires M999 it ignores all commands it receives except M999 so it is correct that setting eeprom will not work. In fact I expect also M205 to g…
-
Das ist Krass und so hab ich es noch nie gesehen. Als ob er das neue Bild nicht komplett hat und den Rest vom letzten Bild nimmt und manchmal noch Artefakte einbaut. Dabei sollte die Webcam ja im MJPG Modus die Bilder bereits komprimiert als JPG zur…
-
Bitte versuch mal mit aktiviertem Ping-Pong. Wir hatten ein ähnliches Problem und mit Ping-Pong so weit keine abbrüche mehr nach 100 Teststunden.
-
Nothing wrong on your side. Selecting controller did not set SDSUPPORT so it was set to 0 and hence no sd card menu. Have fixed it in latest commit.
-
@Scottty Latest github version now works and requires ststm32 V8, but it is set as mandatory so platformio will automatically install and use it, so nothing to do here.
-
Wie sehen die Artefakte aus? Ich hab am pi zero das Problem das gelegentlich das Ende fehlt. Bei den größeren Pis und gleicher webcam aber keine Probleme so weit. Wobei meine Auflösungen auch moderat sind. Wenn die Framerate und Auflösung zu hoch sc…
-
The second parameter in SERVO_ANALOG is the slot used by the servo (0 - 3). You have both at 0 so second one replaces first instance. With SERVO_ANALOG(ExtruderLiftServo, 1, Servo2Pin, 500, 2500, 1473) It should work as expected.
-
It is only the function I showed that is responsible for it. So for that firmware version I can not explain why it happens. Maybe in older versions there is a different code that behaves like that.
-
Have a look at this website it explains how to do it. Different webcams have different possible parameter. https://www.kurokesu.com/main/2016/01/16/manual-usb-camera-settings-in-linux/ Once you have the command to change them add them all into /usr…
-
Condition is met. Found your error. You said #define EXTRUDER_IS_Z_PROBE 1 which means that the nozzle is the probe and you should not apply any offset. Set it to 0 and it should work.
-
Du bekommst von deinem Router eine eigene ip die nur im Intranet funktioniert. Solange du mit dem Handy im gleichen Netzwerk bist mit dem Handy - also Zuhause vermutlich - sollte das klappen. Wenn du von überall zugriff willst must du die IP mit por…
-
Wie gesagt mit einem eintrag in /usr/local/Repetier-Setup/bin/monitorSystlog sollte er beim start schon power off haben. Fürs nächste image schreiben wir allerdings /sbin/iwconfig wlan0 power offweil iwconfig auch mal in manchen modi Fehler meldet. …
-
The stl/obj format have no circles so on export from inventor they get converted to triangles. So it depends on the export settings in your cad software how many segments a circle get. You see this already when you view the stl file. The slicer just…
-
Nein das sind die falschen Dateien. Die log Datei die wie der Druckjob heist ist die richtige und auch nur das ende ist interessant. Du must das aber weiter oben erst aktivieren, sonst erstellt er die nicht (ist normalerweise besser weil weniger las…
-
Ok after a look into the sources the z home function homeZAxis has this part for activating offset: #if Z_HOME_DIR < 0 && Z_PROBE_PIN == Z_MIN_PIN && FEATURE_Z_PROBE if (!Printer::startProbing(true)) { return; …
-
Aktiviere logging und sieh dir das ende des logs an nach dem Abbruch. Ein üblicher Grund ist das die Firmware das verlangt hat, z.b. weil Temperaturen sich nicht wie erwartet verhalten haben.
-
Normally that is http://ip:8080 or what ever port it was assigned. So just the beginning of the url you entered as webcam url with your ip instead of localhost.
-
Assuming you are using latest firmware version this would be the relevant code: if (wait && temperatureInCelsius > MAX_ROOM_TEMPERATURE#if defined(SKIP_M109_IF_WITHIN) && SKIP_M109_IF_WITHIN > 0 && !(abs(tc-…