Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Great. Just make sure distance moved is also correct e.g. when moving from x=0 to x=100 it should be 100mm or your steps per mm is wrong and reducing speed is just required because real speed is higher due to wrong value there.
-
Vibrate is loosing steps especially with some sounds. So check if it gets some friction. Alternatively check steps per mm, acceleration a x jerk and max. speed. Wrong values here can cause faster moves then you think that also cause motors to stall.
-
Kann passieren, ist aber kein Server Fehler. Ursache ist hier mist ein M109 wenn die Firmware so programmiert ist das sie mindestens X sekunden innerhalb von +/-x grad liegen muss. Erst wenn das erreicht ist geht es weiter. Bei neueren Firmwares kan…
-
Mit dem Offset ist ein Server Bug den ich denke gefunden zu haben. Wird im nächsten update weg sein, aber wenn er erst mal eingestellt ist ist es auch so ok. Die Temperaturkurve ist wieder da? Womöglich eine folge des bugs obwohl dort ja die Extrud…
-
Ich hab mittlerweile den Quellcode angesehen von RepRapFirmware. Der Filamentsensor verursacht da wirklich nur Meldungen beim SD Druck. Das ist eine Explizite Bedingung die da abgefragt wird. Da gibt es also nichts zu machen. Außer man verbindet den…
-
Erst mal logging kann man aktivieren im Druckermenu. Da gibt es einen Menüeintrag "Logs" wo man ein häkchen machen kann zum loggen. Die M105 kommen vom Server da er ja die aktuelle Temperatur kennen muss. Ist aber normal kein Problem dabei auch zu …
-
Das mit dem außerhalb des Druckbereichs kann 2 Gründe haben: 1. Es scheint eine Cure Version zu existieren die annimt das die Positionierung absolut is nach G28. Sieh mal in den end gcode ob da G28 drin vorkommt und danach noch ein move. Fünge ein G…
-
Was heist andere? RaspbianOS direkt von der raspberry pi homepage nehme ich mal an? Welchen kernel haben die installiert? uname -a sollte darüber auskunft geben und ls -l /boot sollte die Kernel Dateien mit länge zeigen so dass ich das mit denen vo…
-
Frag mich grad wo mein Optimismus her kam. Du sagtest bei pronterface schreibt er den gleichen Text ins lcd display wie über sd karten druck? Aber warum und wie geht das? Wenn keine Meldung kommt weiß ich ja nicht das ein Problem vorliegt. Dei Funkt…
-
Bin fats so weit:-)
-
Bin fast so weit:-) Werds versuchen.
-
Hast du jetzt V22 image genutzt? Da ist eigentlich der letzte Kernel 5.4 von RasbianOS drauf von dem ich hoffte das es auch das 8gb board kennt. Frag mich warum das bei V20 klappte da andere sagten es würde nicht klappen. Frage ist auch bootet linu…
-
How do we know which real color it would have? It depends on what you currently have loaded and what mixing ratios you have programmed. But there is no standard telling us this so we don't know the colors. Maybe when we have integrated our own slice…
-
In preview you only see it after successful slicing. Also you must have filament visualisation at top toolbar enabled to see it.
-
Ok see on https://www.creality.com/download the V3 is missing here. When you send M115 what firmware does it show? Did they show marlin 2 as firmware?
-
Yes we say to add &apikey=your key but the sample link already contained a ? for language selection and session. Additional parameter use & but first requires ? :-)
-
Megabonus seems to be a pain. Last week I had a client with same problem in chrome with same plugin. Now I have also installed the plugin to see what the problem is. Problem is that it adds a div which inherits css that makes it 100% height so you …
-
Currently no variables or computations are possible. Maybe in a later version. But since it is the end of print you could run an external script that sends the final moves back using the web API. That script might even remember last used position …
-
Wann war das? Ich denke die sind bereits drin. Arbeiten aber gerade an einem neuen update.
-
ws://localhost:3344/socket/&apikey=blah-blah-4b9d-8820-3b330638e751is wrong syntax. It has no parameter. First parameter MUST be preceded by ? like ws://localhost:3344/socket?apikey=blah-blah-4b9d-8820-3b330638e751That should work. When you late…
-
The gcode analyser has a event public event OnAnalyzerChange eventChange; that gets called when the extruder has changed. It also gets called on other occasions so check if it is a tool change why it was called. Target handler gets no parameter. …
-
Ok found why content type was missing. Will fix that for next release hoping it will help, but not having a map is no issue since it is intended to have no map and maps only get loaded in debugger mode.
-
What firefox version are you using? When I run it it is working as expected. The warnings you see are from map files used for debugging to map reduced size to original positions. They are not really relevant, but also should not trigger the warning…
-
Do you have the firmware sources and are able to compile and upload them? I have a theory what it is, but that needs to recompile firmware with second serial for the display disabled.
-
Wenn die Firmware sagt da ist ein defekt kann das passieren. Logging aktivieren und am Ende des logs mal nachsehen was die Firmware da so von sich gegeben hat. Wenn die Firmware in einen Fehlerzustand wechselt stops der Druck.
-
No, it is hard coded to be quadratic and shown as 30x30 pixel. For retina displays we have the higher resolution.
-
Looks like your timeout i set to 4 seconds. So after each timeout server sends 2 lines and waits firmware to send "ok" but this seems to not happen. If you enable ack in log you would see the "ok" at least as long as it works. Communication is synce…
-
You need to recompile firmware to change motion buffer size. That parameter can not be changed in eeprom. The input buffer size is something different and used to send multiple commands in parallel until it is full. This speeds up data transfer whi…
-
There is no official name. We normally bind our self to port 3344. I'm not aware of any service using that port, but you can change it if needed.
-
That is easy. Your encoder speed is wrong. /* Normally cou want a next/previous actions with every click of your encoder.Unfortunately, the encoder have a different count of phase changes between clicks.Select an encoder speed from 0 = fastest to 2…