Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • G33 L0 outputs the grid you measured and contains the corrections against the "normal" zero point without g33. So if it is set correctly it should swing around 0 with z values.
  • Did you set in Printer Settings->Printer firmware type to Smoothieware? This is important for correct error handling. Also have a look at the log (disable easy mode to see it). It might give more information on what goes wrong.
  • It MUST give same signal. Both have flags to invert signal, but name them different. So depending on which is correct change the one that is not correct.
  • What does the log say is the restart reason when you connect to usb? 
  • You have distortion correction disabled then, so it can not be the source of your problem. So back to my initial idea is all I have as ideas.
  • z-min homing and z-probing normally do not play nice. You can not have z min trigger when correcting z at z=0, so this normally gives errors already with normal printers. If z min then use z probe for homing as well.
  • Jam detection is per extruder, so you can in deed already have 1 for each printer. Multi z endstop homing is possible, but if you also use a z probe it gets complicated. So hope you mean multi z max homing. Also I have no dual x with autoleveling s…
  • Extra thermistors are hard in V1. Best solution would be to add a dummy device that has one and just read the temperature. E.g. add another extruder or thermo controlled fan. Use the event system to e.g. query the value every 100ms. On github there …
  • It only outsources time intensive computations! In pi in global settings->communication you add the windows server whcih you configure with ffmpeg path etc. Then when pi is finished with print it would send the images to windows server which make…
  • Hast du die Werte im eeprom geändert? In config bringt nichts und ist auch nicht nötig, auch wenn du mit M502 M500 die werte von config ins eeprom kopieren kannst. EInfacher ist einen eeprom editor in unserem host oder server zu nutzen. Homing feed…
  • On github you see it in dev2 branch. It is quite at the beginning, so no dates at the moment. Some changes are quite deep so it is not really possible to predict this along with our other work. On cartesian/core printer with due based board you can …
  • In host you can have multiple printer configurations, even for same printer if you want one set one for fdm and one for cnc. Why is it bad if firmware has a speed limit? Motors loose steps if running to fast and also hardware has limits what it cou…
  • Sorry, but all your description are so confusing that I do not even see what you are doing and what your problem is. It is G33 R0 btw, not RO. Always use digits after the first letter in gcode. This is supposed to set all G33 corrections to 0, so w…
  • All I can say is that you need it high for both calculateMove calls after detecting you want backlash to cover both edges. Shoudl all be done in queue move as that is the only place where you know about the special case. Once the max junction speed …
  • If you enable command sin log as well you even see what it did ack and with debug echo firmware would repeat the command received. But it looks from your description so far that the problem happens on printer side. Firmware could think a move is ill…
  • All settings and data are in /var/lib/Repetier-Server. If you stop server on new image and then replace it with the old version you have all files and settings of old pi. Just disable license before doing so as it will detect it is a different pi. A…
  • Exactly. All you need is to rerun is the css generator after adding your resolutions in the selector sass file. Or simply use only one for 480px width and set height accordingly.
  • No, I mean %userprofile%\AppData\Local\RepetierHost\CuraEngine, we do not use Cura. I have no idea how RapRap Firmware does gcode uploads. Did not think it is FTP, rather a HTTP request with file. Firmware has speed limits due to hardware. Therefo…
  • You can not attach files here. Please upload to you dropbox/pasebin etc to show the file.
  • We are not Marlin, so please use G32 S2 for autoleveling and not G29. Our G29 does no leveling, it just computes z as average of 3 heights measured.
  • No M401 can only store one position. You have 2 x axis so it goes beside the wiper? Try lazy positioning so it moves only back when being needed for next move instead then.
  • Does the da vinci use a regular endstop? min or max direction? For z min endstop you normally calibrate the endstop or bed to trigger exactly when bed is in contact with nozzle. #define ENDSTOP_Z_BACK_MOVE 2should be 0. You can set i…
  • Yes, others have reported that as well. We will test and fix with next release.
  • It goes back to endstop and then execute ENDSTOP_Y_BACK_ON_HOME and that's it. So the slow move to endstop is the planned one and the next move is ENDSTOP_Y_BACK_ON_HOME. Also it should be positive, have you tried if negative works and can you say h…
  • We already support connection over network for direct communication. For reprap firmware use the telnet port to connect. However, we do not support the native web interfaces. These are more internal functions for communication and too special to sup…
  • Not enough information for analysis. Does the bltouch trigger a reversal? Because of the small time period it signals a change you need a minimum speed to have at least 2 steps within the trigger duration of the bltouch (5-10ms).
    in BLtouch Comment by Repetier June 2018
  • In G32 S2 means also measure height so it goes up to z max which it does with homing feedrate/ENDSTOP_Z_RETEST_REDUCTION_FACTOR I guess.     PrintLine::moveRelativeDistanceInSteps(0, 0, probeDepth, 0, homingFeedrate[Z_AXIS] / ENDSTO…
  • You need a homing order with preheat to control where z probing for home happens. Set preheat temperature to 0. Then it should probe in the middle if you set these coordinates.
  • M104/M109 just operate where you are and that is not what you want. M104 is no problem as it has no delay but M109 waits, so use memory position - M401 - Store x, y and z position. - M402 - Go to stored position. If X, Y or Z is spe…