Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Since you use programming port for uploading. Do you have configured firmware to use that as well? You know you can configure it to listen on native port and still upload on programming port. You might even configure it to use both ports - works at …
  • You can use the update function in  Repetier-Server to update. No need for new install. But you might need to add the change to get rid of the message. But you haven't posted the console log when it happens so can not say if that even would help. Bu…
  • The M99 being metntioned triggers the error. Question would be why you get a crc error - haven't seen this yet so think it is firmware internal check maybe from eeprom as that uses crc error checks. So it might be that eeprom is not working or if c…
  • That is more a firmware/printer issue. There should be an official solution to calibrate Z home position such that it works. Either a physical z endstop that gets moved or some firmware configuration that changes z height for homing e.g. stopping so…
  • The issue lies in the linux video driver. The new video driver with opengl support does not handle the well known config.txt all correct. I saw it rotate at start and neglect it in graphic mode. The arandr solution instead tells x window to rotate s…
  • As you see there are no messages from firmware back, so communication does not work. To check: - Firmware set to Marlin - Use port with /dev/serial/by-id - there should only be one starting with that if you have only one printer connected. Then you…
  • Yes, if you use @set for any set precondition that would work. There is a run on connect script where you can reset them for initial value. Use global scope for your variables. For some things like homing this is even directly available: statePrint…
  • Don't think it works as displays have a fixed non UTF-8 character set and codes also differ between display types. If you see the deg or german ü you see that we convert "ü" into "ue" even for some target displays. But that would be the solution to …
  • Stand beim Terminal in dem die Installation ablief "Terminal geschlossen" oben? Das hier ist ja noch entpacken/installieren von APT Packeten. Was ich vermute ist, dass die Verbinung zum pi kurz abgebrochen war und sich das Terminal damit geschlossen…
  • Memory usage looks good so far. It varies always a bit depending on what server is just doing. Juts when it starts going craze exceeding 10% it would be unusual and probably the issue you have. If you have access to it before it crashes due to memo…
  • The issue is that the set temperature of extruder only gets changed by M109 and M104. So if printer suddenly changes target temperatures such a command must have been send. Hence my suggestion to search for them in the created g-code to be sure they…
  • Not sure it is worth investing so much time as 99% use simple webcams and even with onvif we currently need the mjpg stream url. It is the only thing we can work with. Not even sure if that standard would help here, also i saw at least mjpg mentione…
  • That's the spirit of open software delevlopment:-) Thanks. Have pushed it for 1.0.5 on github already.
  • So set values are too high if I understand you right. These are set by the slicer so only the slicer settings are relevant. Save slicer settings and in host make sure to select the filament profiles with the correct temperature and slice. Without re…
  • Some boards have no eeprom or firmware is configured to save eeprom data to sdcard instead. Would also mean if no sdcard is present it will always start with default values. Assuming you use marlin https://marlinfw.org/docs/gcode/M301.html shows det…
  • uilang.h around lines 3869 #define UI_TEXT_BED_TEMP_TR "Tabla Sic: :%eb/%Eb" cDEG "C"#define UI_TEXT_EXTR0_TEMP_TR "Sic. 1 : :%e0/%E0" cDEG "C"#define UI_TEXT_EXTR1_TEMP_TR "Sic. 2 : :%e1/%E1" cDEG "C"#define UI_TEXT_EXTR2_TEMP_TR "Sic. 3 : :%e2/%E…
  • Image does not work. My initial guess is that the translation is broken. Please check in uilang.h for the english text you see - it might exists several times. The critical parts are the %xx parts that get replaced by the value. My guess is that at…
  • PS: You need a recent server version, this is a quite new feature introduced first in 1.3.0 I think.
  • Computed expression in server are different then in octoprint. In manual you see them in chapter computed expression in case you want to play with them. The printed file name is {{job.name}} for your command.
  • Ok, screenshots look good. The memory runaway did not happen so far:-)  For logging memory I don't know a good tool, but you could log every minute the server memory usage. Then you also see if it goes high immediately or slowly. So login as pi na…
  • The temp wizard in server is not to control temperature - it is to get timings on how fast a extruder heats/cools down for better time prediction. So running it has no effect except better time prediction. Did you copy new PID values to eeprom so i…
  • Ok, first thank you for timestamp and good logs. Really helpful here. First in server log  2022-07-23 16:55:32: Updating info for /var/lib/Repetier-Server/printer/PulseXED124/jobs/00000002_redBinoV2.g printer PulseXED124 2022-07-23 16:55:44: Time …
  • Ok, so no bug. Only issue is that when printing we remove the control entry in menu as that contains a lot of "bad" commands that destroy print when executed during print. So that won't change, but you can modify it if you like. Open uimenu.h and se…
  • Ich hab mal testweise einen Wizard geschrieben. Er kann mit x Minuten Verzögerung den ersten Druck in der Warteschlange (wenn sie nicht leer ist und nicht schon ein Druck läuft). Hier der G-Code zum Wizard: @func startDelayed@startNextPrintInQueue@…
  • Normally you do not use keyboard and mouse with our interface as you have a touchscreen. At least it is optimized for this use case, which means we hide the mouse cursor. Which pi image are you using? If you use our latest image see the download pag…
  • Lights are only available and controllable if CASE_LIGHTS_PIN is set to a pin to enable/disable them. Then M355 can also be used in server for example to switch them. What board and display are you using? Normally you push the button and you are in…
  • Which klipper version are you using? Especially if you use latest it downloads latest version from github, and if printer firmware mismatches you might need to reupload firmware driver to printer. Had this already several times that something new re…
  • There is no build in solution. Using the api you might have a small bash script that starts it using the linux "at" command to execute scripts at certain times. At least if you are using linux. The command you need to execute is "@startNextPrintInQ…
  • The error is probably in velocity painting settings. After all this is done by changing a fixed speed you gave for outer perimeter by low/high value interpolated set in painter settings. And if these vary too much you get exactly this.
  • Hast du ping-pong aktiviert? Das ist zumindest bei unserem Prusa Mini wichtig, weil er sonst mit den Befehlen gelegentlich durcheinander kommt und dann passt nichts mehr was er bekommt oder alles ist x Befehle verzögert. Im ping-pong Modus läuft es …