Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Sollte nicht so sein. Zumindest wenn beide Drucker über /dev/serial/by-id verbunden sind. Da unterscheiden sie sich ja. Bitte nicht mit /dev mischen da unter /dev evtl. beide gleich heißen können je nach Reihenfolge. Bitte direkt nach dem Einschalt…
  • No that is not possible. Gcodes for uploading and server can and often will be on different servers. And server does not see where it came from. Browser just sends a post with filename but server does not see the source and has no access to it anywa…
  • Click context menu->summary there you see the group and can change it. If you upload it gets uploaded to the currently selected group.
  • Das ist ein reines Slicer Problem, server sendet den Gcode nur. Die Slicer haben einstellungen wann sie ein Retract machen, aber genaueres kann ich dazu nicht sagen. Da würde ich eher bei den Herstellern der Slicer fragen. Ich weiß das ich schon mal…
  • I also googled it a bit. looks like Dremel/Flashforge have a own firmware. They claim to have written it anew according to the threads I found. What Octoprint has is a plugin layer for communication and a GPX plugin that converts gcode to x3g so to …
  • Yes, you need an additional parameter naming the group. I think group=encodedname will make it move in that group that must already exist. Let me know if it is a different parameter then I check the name. You also see it if you upload in server fron…
  • We in deed do currently not support X3G format I think it is called. Adding that might in deed be a good idea for a future realease. Need to learn more about how to convert gcode etc to it. Marlin should be no problem and all reprap like communicat…
  • So the messages in log are gone but still freezing? How good is the sd card? Here a short code sequence to test speed: dd if=/dev/zero of=~/test.tmp bs=500K count=1024sync; echo 3 | sudo tee /proc/sys/vm/drop_cachesdd if=~/test.tmp of=/dev/null bs…
  • And what does iwconfig say if you are connected with wifi. For comparison here what I see with a printer close to router: Mode:Managed  Frequency:2.417 GHz             Bit Rate=108 Mb/s   Tx-Power=31 dBm              Retry short l…
  • A call to a function in your custom events returning true and sending the wanted intensity. More or less it contains the same you would put into the if condition else, so analogWrite(val); or if you do it with another chip the transmit command to te…
  • Now that I see May 19 18:09:57 Repetier-Server wpa_supplicant[456]: wlan0: Failed to initiate sched scan it is clear it is not our scanner causing the messages that you said to coincide with the freezes. wpa_supplicant is the software doing it. So t…
  • Have you already updated to 0.91.2? It has new wifi manager and also improved wlan handling. If you run iwconfig in console you see connection speed. How much do you have? There is still the chance of having bad connection so drops are for quality.…
  • Most likely your firmware does not support it. Only some printrbots support it, it is not a general available command.
  • We never send such a line from our code. Check if your gcode contains any M117 or it must come from firmware.  What happens if you click button? Does menu reappear?
    in LCD Comment by Repetier May 2019
  • Ok, that comes from wlan scanner Run sudo chmod a-x /usr/local/Repetier-Setup/bin/wlanscannerto disable it so it not executabel. chmod a+x /usr/local/Repetier-Setup/bin/wlanscannermakes it executeable again. If it doe…
  • You must delete also the #defines which override old value that you want to keep. As programmer it was clear for me, but I know I did not say that.
  • Ok, your htop screens show no high cpu or memory usage so no reason for a freeze here. The fact that console also freezes at the times shows clearly it is no server issue but complete linux freezes for some reason. Explains why everything continues…
  • EVENT_SET_LASER is the event. If it return false it will not override what you do. Default is just to return true so the default handling is used.
  • If you compare printing and non printing graphs you see much jitter when you print. This jitter makes the normal pid not work efficiently so it swings much more then normally and can reach the limits to trigger decouple. Also print quality will not …
  • Sure. You just need to prevent switching sd channel with the controller. In DisplayList #if FEATURE_CONTROLLER == CONTROLLER_RADDS#undef SDSS#define SDSS 10#undef SPI_PIN#define SPI_PIN 77#undef SPI_CHAN#define SPI_CHAN 0 …
  • We deliver with 12345678 as wifi ad-hoc password.
  • D :\Dokumente\Prusa.bat; ? Hope you omitted the semicolon.
  • USB2Ethernet is a nice idea - I assume you then use ethernet connection to connect to printer? But I think it increases likelyhood of bigger failure if you have a problem on ethernet. Then all printers will fail. On the other side ethernet is quite…
  • Yes, what you have i settings is what server assumes is your position after homing. So if you have 0 and are at zmax going down 10 mm means -10 for server with that value. Will be clipped to 0 so it will go down to z=0. Setting this to zmax reported…
  • Maybe you show us your batch so we can see what you are doing. It's easier to discuss errors we we can see it. Working on monitor/server update. Still planned end may/start june.
  • Not per configuration. If you look into printer.cpp for me line 2199 in homing sequence you see moveToReal(startX, startY, startZ, IGNORE_COORDINATE, homingFeedrate[X_AXIS]); add before it new coordinates to start for x and y startX = 100; st…
  • That normally only happens if the Z server thinks you are at is not the same the firmware thinks. Go to console and send M114 to query firmware what it thinks Z is and see on right in move tab what server has for z position. normally it is the homin…
  • English please, don't speak that language. What firmware version are you compileing with which arduino ide version? Does not look like the current version. Current version requires Arduino 1.8.x while older version may need Ide 1.0.x or something i…
  • That line gets send send by server if you tell it to send print status to printer in printer settings. It is just M117 some text so a normal firmware command. If the top 3 lines disappear that would be more a firmware issue then a server error. Have…
    in LCD Comment by Repetier May 2019
  • Maybe I should in deed make a beta page some day. Due to all the different platforms it is not so easy to just publish a beta. Publishing takes several hours for me, so nothing I do that much. Normally I just compile the devices for me that I use fo…