Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
When you see that much the communication settings is ok. Serial com error:System.IO.Ports.SerialErrorReceivedEventArgs comes from the windows side, also I can not say what exactly causes it. It seems to happen at start only, so I would just ignore i…
-
Can you try installing the package "libgl1-mesa-dri". It should contain the missing libraries. Not sure why but latest Slic3r appimage contained less libraries. Maybe this is related. Anyhow I guess that installing the missing library should solve t…
-
Die Versionsnummer im image wird erhöht wenn sich etwas abgesehen vom Server ändert. Der mjpg_streamer in diesem Beispiel. Der ist ja nicht von uns und nur vorinstalliert. Wird also bei Server-Updates nicht aktualisiert. Daher brauchten wir dafür ei…
-
Which other slicers do you mean? I only know meshmixer supprting something I could call a tree, but that is no slicer. SLic3r has support for pillars which is maybe similar to what you mean.
-
Update ist jedenfalls raus.
-
Ja, bitte mal logging einschalten oder in console alles an (Befehle/ack) und zeigen was zuerst und dann danach passiert. Bitte wechsel dokumentieren. Was oft hilft ist den Drucker zu deaktivieren und wieder aktivieren im Server. Ist im Grunde fast …
-
That is correct. M355 uses the pin as digital pin. With your P values in M42 you switch the pin to PWM mode and that overrides the digital pin state. You have to use either your or the firmware solution and do not mix.
-
The extruder solution is just adding a new extrude rin config tool. Choose any stepper you want. Heater is the chamber heater and sensor is enclosure temp. sensor. You do not use the extruder actively but with M104 T1 S60 you can for example set it …
-
Hab gerade zum testen einen gcode hochgeladen und es hat geklappt. Bei welcher der 7 unterstützen Betriebbsysteme und bei welcher Hochladefunktion klappt es denn nicht? Grundsätzlich reparieren wir lieber Fehler. Du kannst jede Version ab 0.90.0 ei…
-
Gute Nachricht. Ich hab das Problem gefunden. Mit einer älteren Version von mjpg_streamer funktioniert es auch unter debian stretch offenbar problemlos. Erstelle gerade ein Pi image V10 wo das Problem behoben sein sollte.
-
You can put anywhere in C++ code Com::printFLN(PSTR("Your message")); when then that code part of firmware gets executed you see the "Your message" in the log. As you see the back move I guess endstop is triggered then. You can also send M111 S71…
-
Did you prefix them with a #? I guess you mean the gcodes that do not follow gcode syntax and therefore are no gcodes. In server if you prefix a line with # The content will be send 1:1 without checksum etc. That should work on all firmwares.
-
Das mit dem Strom kann ich nicht sagen. Kann gut sein das der nur elektronisch eingestellt werden kann wie beim TMC2130 aber wozu isr dann der Poti?
-
It's my error. Last permission check now wanted a password for API login, which is wrong. Will fix this very soon in 0.90.4.
-
To prevent overflows in communication hosts send a line and firmware repsponds with "ok" when it was read and buffer is free again. If a communication error causes the "ok" to become "o" or "k" it is not recogniced and firmware thinks the memory is …
-
Ich denke der interpoliert standardmäßig. Aber nur eine Vermutung, hab das Datenblatt jetzt nicht gelesen:-)
-
You can add a print message in homeX to be sure it got called. M119 is often misleading as it shows the state when you send the command and not when homing command tried X axis. But in any case you should have seen the retry during homing when it tr…
-
S1 is for ignoring coordinate checks, not endstops. ALWAYS_CHECK_ENDSTOPS false means only the 3 endstops used for homing are used and only when homing.
-
Have just looked into 0.92.8 and see no pin definitions for the Melzi as well. 0.92 has the same settings they are just in ui.h instead of DisplayList.h. Would have copied them but do not see them. Do you have a special version where they are includ…
-
Enable show commands in console and see if the gcode gets send to firmware when you call the function. If it gets send the problem is in the firmware. I wonder how you do toggle with the command. S255 always means on. For toggle you need to switch …
-
Is this with latest version 0.90.3? I can not reproduce this at the moment. What often helps finding the issue is when you enable the javascript console in chrome to see if there are special error messages pointing to this. There are also some "goo…
-
Hier https://www.watterott.com/en/SilentStepStick-TMC2208 werden sie zumindest als Kompatibel geführt. Klar ist das die elektronische Programmierung nicht greift, aber im normalen Step/dir/enable modus werden sie mit ihrer default Einstellung arbeit…
-
Ok, ich habe die Dateien aus V9 mal auf meinen pi mit der Raspicam gepackt, aber weiterhin keine Probleme. Mit dem Befehlsudo /usr/local/bin/mjpg_streamer -i "/usr/local/lib/mjpg-streamer/input_raspicam.so -fps 15 -x 800 -y 600 -quality 85" -o "/us…
-
That is a normal com error if firmware misses a "ok" from firmware. You can enable marlin to send line numbers and wait in advanced config. That makes recovering from this error much faster.
-
Only display for rambo I see is this in DisplayList.h #if FEATURE_CONTROLLER == CONTROLLER_RAMBO // SeeMeCNC LCD + Rambo #define UI_HAS_KEYS 1 #define UI_HAS_BACK_KEY 0 #define UI_DISPLAY_TYPE DISPLAY_4BIT #define UI_DISPLAY_CHA…
-
I do not think it is pin compatible to the RAMBO board. Waiting for someone to provide pins so we can include them in our list. Being not compatible would then also mean the display needs a own config with own pins. So firmware in general will work…
-
In config tool disable mixed extruder to change them and enable it back then. Older versions only used first resolution but that is now fixed.
-
Also note that after first upload many things like resolution and acceleration need to be change din eeprom. Use Repetier host/server which have an editor for this. Or use M502 M500 to copy changes in configuration.h to eeprom overwriting old values…
-
See you value for FEATURE_CONTROLLER and in DisplayList.h you have lines like #if FEATURE_CONTROLLER == CONTROLLER_ADAFRUITYou need to find the one with the value of your feature controller or with a symbol that stands for the name. …
-
I'm also only a software guy. For hardware problems I leave it to others.