Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • You did only show part of it. There are 2 different tags. The one inside are part of the button and required. The outside  are for the @execute command. So my guess is that you removed the execute inside command.
  • Thanks. After some thinking and another complaint I decided to remove it form our standard ini list. If users want it they can activate it in run on connect anyway. With M503 not saying anything about size it makes sense that default values got us…
  • We now send M412 S1 H1 to activate filament sensor with host control. So it should send a message to server and trigger the server out of filament solution. You can add a new M412 to enable different behaviour in printer configuration->G-Codes-&g…
  • Yes, M412 is new and was added after I found out this command exists. Reason is that many users have problems with filament sensor because it does not give correct messages and this activates them. Since you have a firmware with this, can you test i…
  • Sure sudo /sbin/shutdown -h +30 gets executed? Not sure if linux can handle multiple commands in a command call - we are just starting first command. Maybe better put it at the end of hard-shutdown.sh. Since shutdown is in sudoer list for repetierse…
  • Yes that would be the best solution. It is in our startup g-code in firmwares/marlin.xml to tell firmware we want the messages to be handled with action commands so we get the run out message. If you have no filament sensor, firmware should be comp…
  • You need a service that does that, then you can use our push integration and write the url to add messages to discord. If you know a service and just don't know how to make the url show me the required url and I'd try to adjust it.
  • I see, you have configured your printer in server with no extruders so you don't see them. Do to printer configuration->tools and add as many extruders as you have then you should see them.
  • You always can use the webcam to monitor a print. That is independent of any timelapse running. Just by default you see the print object. Clicking on it shows webcam in the small area in manual control or console. In webcam you should always see it.…
  • Ok war mir nicht klar das dein virtueller Rechner ein nas war. Macht die Sache etwas komplizierter.
  • Ok some printers have modified board to only work with main power. Often with a jumper on board. Good success with isp solution.
  • Maybe a bit misleading but that was the command as you enter it running user pi. If you make a script of it, it would look like this: #!/bin/bashnc -N -U /tmp/repetier-server.sock
  • I meant main power to the printer so board is only powered by usb cable. If you mean baud rate in windows settings that is useless - it does not get used. avrdude determines the speed. Different com ports - actually you should see which com port i…
  • Welche geht kann ich nicht 100% sagen aber hier https://www.ispyconnect.com/cameras eine Liste mit zu verwendenden URLs. Du brauchst eine die mjpg liefert und wenn möglich auch jpg - zur not kann man mjpg url auch für jpg nutzen. Das du für die usb…
  • v1.5 of which brand and model? Melzi is the only I know directly to use that chip. 1284 is quite unusual and has the additional issue that the firmware must fit into the 124kb. So make sure the compiled firmware uses less flash. Regarding y axis yo…
  • If firmware sends no message the server will not be able to know. So solution is to reconfigure printer firmware to send a message in that case or if you are using a raspberry pi you can also wire the sensor to the pi so server can monitor the signa…
  • Ok, sorry für die Verzögerung aber hatte viel zu tun und das ist etwas das doch viel Zeit braucht. Konnte jetzt auf einem Pi 3 mit neuem Image ähnliche Probleme erzeugen. Vorher hatte ich das auf einem pi 4 mit 8gb ram und schneller SD Karte getest…
  • Hab heute den gleichen Fehler mit virtualenv bekommen. Ursache war das wegen eines Kartendefekt apt nicht alle Pakete unter anderem virtualenv nicht installieren konnte. Hab jetzt noch im Skript ein Flag gesetzt beim ersten Fehler zu stoppen, damit …
  • You need to modify firmware and reupload, sorry. Sounds like it was wrong configured anyway and hardware changes normally need firmware adjustments e.g. replacing sensor type by the new one, end stop direction motor direction, ... But what board are…
  • Du kannst den Installer selbst herunterladen: http://download1.repetier.com/files/server/extras/klipperInstaller.shDu siehst das alles davon abhängt das apt funktioniert und die Pakete wie in Debian zur verfügung stehen. Zuvor wird nämlich virtualen…
  • There is a small difference. Your code only works with an activated printer. If printer is already disabled M/G Codes are ignored which would be ok in that case I guess. So assuming you leave printer always activated in server you can instead call a…
  • Use imgur.com for image uploads for example. Works without registration. Do you mean in 2 extruder mode you see temperatures? Is the icon not present for temperature or no temperture in icon? If second can you show the temperature response in conso…
  • We can not enable it when not recording. Depending on settings that has an impact on print if you set it to forced position and adds pauses. So it is a decision you need to make before. You can define to always make a timelapse and just delete it yo…
  • Settings are stored in homdir/Library/Preferences/repetier.Repetier-Host-Mac.plist but you can also just remove printer and add a new one. But that most likely will not change homing for buttons. We send G28 or G28 X0 Y0 Z0 which is the official hom…
  • No, did not know about the compile issue. Just fixed them. Not sure if I like the result or not. Coordinates in log show that target z is same as current z so there is no need to move Z at all. That was to be expected of course, but if we are at ta…
  • First you should use 1.0.5 instead. It's the same as 1.0.4 just with bugs fixed as firmware is not in development any more and all we do is fix 1.0.5 for new bugs. Development is on 2.x firmware. That way you have also the code I look for when check…
  • The reference was with repetier-server. Is this sd printing since you mention lcd handling and lcd continue. Since that method blocks communication server would not know about the pause. If you use it with server you should set JAM_ACTION to 2. Wit…
  • What did you send? M30 Filename Did it write file deleted before starting? If you check the code case 30: // M30 filename - Delete file if (com->hasString()) { sd.fat.chdir(); sd.deleteFile(com->text); …
  •  https://usersupport.repetier.com
  • When firmware starts it normally assumes z=0 as it did not home so far. So that is normal. But then you just home and are at correct z=0. What is the printer manufacturers official solution to homing? How this should work depends on printer I don't…