Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Parameter data is always a json object hence in {} and from json standard parameter are in double quotes. 
  • If you look into docs you see removeModelParameter: id (int) = id of g-code that will be deleted. So json representation is {"id":46} which is url encoded %7B%22id%22%3A46%7D which you enter as data.In javascript console you can enterencodeURICompo…
  • Additional things are support, skirt, brim, shield, prime tower if select. If the model is not manyfold you will also get sometimes different results than expected. I personally only get the structures in gcode I expect, so hard to say what it is in…
  • 679 is the line number in HAL.cpp file. Might be some lines higher or lower just search for stepperWait and you will find it.
  • We set them to high to pulse and low afterwards. For enable/direction you can define it since different drivers expect different values. Not really sure what that +/- is meant for on the driver. On the boards potential is gnd and we set 5v/3.3v for …
  • If you set buffer so low the advantage over ping-pong mode goes away. And of course it must be longer then longest command send. Marlin normally has 127 byte buffer. In your example N14409 G1 F1800 X101.015 Y104.975 E1038.84601 has 45 byte plus *12…
  • Server has 2 printer names. The official name which also host shows and a internal slug name that is used for referencing. You see it also in the url part if you view the printer. Guess the name you see here is then the slug name which is the only g…
  • They are stored in Workdirectory/CuraEngine/. Please check if they are readable with user permissions. They get read on startup. Also check if you run host form command line if you see error messages regarding them.
  • Then press Ctrl+F or enter it directly in the search tab below the editor.
  • Yes 1.0.4 has best advance in repetier and with direct drive extruders you get good pressure control so thickening from decelleration/acceleration is less visible then without.
  • You could try installing arduino ide with drivers in case they have the same serial driver as normal arduinos. May printers have. Otherwise check in hardware settings settings for VID and PID of the usb connection and search a driver for that. Last …
  • In the next days I release an update where at least the disconnect from setTimeout throtteling does not happen any more and also the webcam problem is solved. So I found at least some parts of it. But why reconnect seems to not work in your case is …
  • View -> Toggle Printer ID View or Ctrl + I changes it.
  • During print means while moving. You need to sync it with M400 before your M163 to get correct timing. We do not alter positions - the problem is that moves are buffered and executed independently from mixed in commands so timings do not match unles…
  • 1. Will include all 1.x versions as well. 2. You can report that and we reset license for you, so no extra cost. 3. The repetier-server installation needs the license. So number of installations is limited to 5 not the number of views or connections…
  • Ok found a bit more. When tab is not active the setTimeout function in javascript gets throttled - the longe tab is inactive the more throtteling happens. This causes the websocket to get closed. It will then get reopened and closed again in a loop.…
  • Also maybe of importance - which safari version are you using? Version 13.0.2 (15608.2.30.1.1) is what I currently use.
  • Hard to say. My guess is that safari puts invisible tabs into a sleep condition at least in your case. Still can't reproduce it. And when it comes back the sleep condition causes a problem. Server will disconnect websockets when not pinged every 5 s…
  • If order does matter it sounds like enable_uart=1 uses the pin as well also pin 3 is I2C pin. Your solution is also nice because it can also repower the pi according to https://www.stderr.nl/Blog/Hardware/RaspberryPi/PowerButton.html
  • That is generally a bad idea. As soon as you enable that server will send all the log events even if you do not see them. Means in 99% of the cases you would just add load and traffic to the client to have it enabled by default. Most users never use…
  • Wrong temp. sensor, some other function using the same pin and hardware defect are some common reasons for that problem. If you check temperatures in repetier-host/server you see also wanted output power in the temperature graph. If you see it there…
  • Yes, they are not made to be used during a print. If you need exact timing prepend a M400 before the first M163 and firmware will first stop all motion at that point and then change it. Will cause visible seam if you do not use correct advance, but …
  • Yes, but our infrastructure does not allow this at the moment.
  • You are right. Look at Extruder.cpp void Extruder::retractDistance(float dist, bool extraLength) {    float oldFeedrate = Printer::feedrate;    int32_t distance = static_cast(dist * stepsPerMM / Printer::extrusionFactor);    int32_t oldEPos = Print…
  • You mean server runs in a tab and you switch to another tab and when you come back the problem is there when there was a delay?
  • Our image is also based on Raspbian, so same solution should work I guess. We are already based on buster and there might be a package missing you need. Never did this with overlays so no idea.  We have gpio support for our lua language in side serv…
  • MKS Gen L is a Mega2560 compatible board based on RAMPS 1.4 layout. So Mega2560 is the driver to select for uploading or compiling firmware. But do not ask me for a firmware file, I don't have them for that printer.
  • I see. It is using the input fields from top when using bottom buttons. Fixed for next update. Thanks.
  • It is sufficient to go to printer settings and set webcam to jpg only. In fact not doing so will not close the found problem. Good news is that I have an idea how to work around the mjpg problem at least for next release.