Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • I agree that serial is in general working. Question is why does firmware not see any messages being send. I think you are using a due based board. Does it have 2 serials like original due? Maybe try using the other serieal instead. Also did you try…
  • /etc/rc.local is fine I think. We just use services to run our scripts, but that is complicted for a personal image so no need to add an own service just for that. Are you sure a print is stopped with @execute ... My thinking is that it looses conn…
  • Baudrate is ok, but as you see only receiving is working. Firmware i snot seeing any command you are sending. It might be that driver uses hardware flow control, so test with all 4 combination of dtr and rts being high or low at the end of connectio…
  • I just tested @startNextPrintInQueue several times and it did it's job. Of course at the moment it gets called there must be a print in queue and printer must be connected and there must be no job running. So that seems to work. I also tested this …
  • Depending on printer model you might need a special combination of RTS/DTR. Only state at end matters so at maximum 4 combinations to test. Or the baud rate is wrong, but I assum eit is the same as before so should be correct. Some drivers communica…
  • I found out that in current version @timesCall only works when connected, so gets triggered only when power is on, but that shoul dnot be a problem as long as timeout is long enough to get it connected. You should add some @echo commands after @fun…
  • This is the forum for Repetier-Host, not for dobot magican software. That is a different company.
  • Z_PROBE_BORDER reduces size for probing so bed must be bigger then that distance. Bed must be within the rectangle described by allowed positions #define X_MAX_LENGTH 270#define Y_MAX_LENGTH 270#define Z_MAX_LENGTH 270 #define X_MIN_POS 0#define Y…
  • @func startFirstInQueue  @startNextPrintInQueue@endfunc @func enableAndStart  @if {{job.running==0 && state.online!=0 }}    @gpio Power on    @timedCall startQueue 4000 startFirstInQueue   @endif@endfunc @callOnEvent "printJobAdded" enableAn…
  • Makes sense, there is a  @endif missing in second function I see. So that would never run.
  • No and this will also take a while as it needs very deep changes and it is not the time for that yet. So monitor will be the solution for some time. What ha simproved is gcode sharing over projects. Projects now also have gcode preview and you can s…
  • Ja das ist kein Problem. In Druckerinstellungen-> Manuelle Steuerung-> Invertiere Z einfach wechseln dann sendet er es genau anders herum.
  • 1. Yes 2. Yes whatever command you have to enable power Note that this command does not get triggered on activation. It gets triggered when you add a new file to print queue! So just adding it with gcode already there would not work. But you can tes…
  • You put it in run on activate script, so it is active as soon as you activate it. Afterwards deactivate and activate to install new functions.
  • Thanks, in deed connecting did not trigger change event so it never changed names. What helped was calling settings change printer and close with ok and then connect. Next version 2.3.2 will have this bug fixed.
  • > With your way server would constantly be running a command to check for the event  "printJobAdded" and then start printer/print job?  No it does not, but the example is pasing communication which would. I mean add a event listener in "Run on ac…
  • On server side you can use a gpio button. But in upload there are no more ways to call code except the event "printJobAdded" which gets called after adding it. So if this is your only way you can add a event listener and check if no print is running…
  • Image uploads are not possible, but you can use free image stoarge services and post the link here.
  • Versuch erst mal die von mjpg_stremer bereitgestellte Webseite zu öffnen (http://ipdespi:portWebcam) und prüfe ob die auch abgestürzt ist. Dann liegt es nämlich nicht am server, sondern daran das die Webcam-Software abstürzt, was ich hier vermute. …
  • No it can't and it would also not help in general since fan commands must be synced with movements and printer path planning. Repetier-Firmware has a laser mode which does this conversion printer side so it can sync with movements without stopping a…
  • API is documented here https://prgdoc.repetier-server.com/v1/docs/index.html#/en/web-api/bridge in forum you might find some examples of curl and send call which is the most frequently used one. See api doc: https://prgdoc.repetier-server.com/v1/doc…
  • @::00  BB@@::00  are no error on our side. That is the wrong firmware response from your printer that also causes host to show wrong/no temperatures. Apart form that it will work. 08:15:30.400 : Error:Line Number is not Last Line Number+1, Last Lin…
  • Sure you can use console to send server commands. Also API send command would work. The main issue is that you can not start a job when printer is marked offline which is what cura plugin does when you send gcode. So you need a solution that sends a…
  • Only one software is allowed to connect vie serial. That is why you would need repetier server connector in host and not serial to connect via server! Mac host also wont work, use server here as well. Only issue is mac host has no server connector s…
  • Dann sind nicht wir es die USB trennen. Schon mal versucht das USB Kabel zu tauschen, falls es da einen Wackelkontakt gibt? Scheint ja zeitweise recht häufig hintereinander zu passieren und es sind ja nicht mal Fehlermeldungen im Drucklog bis auf da…
    in Prusa MK4 Comment by Repetier July 2023
  • Is there an error message in server.log?  On which os do you have the problem? In windows sometimes files can be locked prventing delition. Then try after a reboot. You can also always delete the config file in STORAGE_DIR/configs and delete printer…
  • I see you have the ender 3 with buggy temperature report. TT::28.1828.18  //0.000.00  BB::28.1028.10  //0.000.00 Has all outputs duplicated. Correct it would be T:28.18 /0.00 B:28.10 /0.00  Repetier-Server knows the bug and fixes it, host will not …
  • Thanks for the info. Needs a new printing method in server that is only possible when we implement the new planned structure. But then I will have a look into it.
  • Yes, unconnected printers can still run server commands. We changed that since you can do so many things still in scripts without gcode that it made sense. Just gcode does not get send to printer. Also putting fpio command con power on/off should wo…
  • More important is the printer still communicating with the server when main power is off, meaning is the conected icon green and firmware runs just move/heat won't work due to missing main power? Actually if it is red it should even not start the pr…