Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • First you know  #define Z_PROBE_Z_OFFSET 0.45means you have a 0.45 mm coating you do not want to consider? That is used normally only if you have inductive z probe and different bed coatings so it is easier to adjust. The general result is good reg…
  • Maybe it is easier to flip hdmi output 180°. /boot/config has an option to rotate the screen. Not sure how to flip touchscreen. Maybe running xinput_calibration from commandline would do the trick after setting export DISPLAY=:0
  • Ok, then try 2MHz. But make sure to find both calls setting frequency. Not sure how fast the old library version did set speed but everything is more or less the same. The library in general seems to work well if the speed works. Some boards seem to…
  • In configuration you have /** Prevent extrusions longer then x mm for one command. This is especially important if you abort a print. Then the extrusion position might be at any value like 23344. If you then have an G1 E-2 it will r…
  • No host does not have this. You need to set it by sending the right commands: - M450 - Reports printer mode - M451 - Set printer mode to FFF - M452 - Set printer mode to laser - M453 - Set printer mode to CNC
    in ilango Comment by Repetier August 2018
  • I have checked it and the used version did not have the try/catch so now it hopefully will work. If it still doe snot work after the next update please let me know. Not having 2 monitors I can not reproduce this but I'm quite confident that it solve…
  • It is on our todo list but currently not possible. What I want is to show current layer on switch as greyed out layer. 
  • That is a problem with the command line in CuraEngine. The first stl send is for T0 and the second for T1. With only one STL with content this becomes automatically T0. A empty STL send before gets ignored.
  • Not sure if wire would also never time out. For writing/reading eeprom a reset is best solution anyway I think. For temperatures etc it would be difficult to say. When it stops working errors will happen imagine temperature not updating any more. So…
  • Did it work before? Not sure if SPI pins for that board are at same position for smartramps.
  • Yes, maybe that would also be a help also I2C was so far not a problem. But SPI with different speeds/modes constantly make problems if you have more then one device.
  • I can try to put a try catch clause in that function so it just does not position window if position is illegal. Hope that will fix the position error problem.
  • Servers must be unique and if you connect multiple servers e.g. by sharing the project contents between multiple servers it is easier to recognice for humens then the server uuid. So now every server gets a name whcih you can change in global settin…
  • At the moment I have no plans for this. I think it will take some time to make it production ready. But from the design it can support quite easily other Arduino supported hardware. It is mainly a new fastio and HAL for the target system. The remain…
  • In laser mode the difference is that G0 does not enable the laser. Travel acceleration is used if no extrusion happens. Apart from this there is no difference.
  • Your idea to increase flow is normally correct. But you should also tell the slicer a doable width. If you have a 0.4mm nozzle you can maybe extrude up to 0.6mm with lower widths for small layer heights. If you want to extrude enough for  0.8mm that…
  • Better not to change designs. Part of the design is a heat break to separate area with fluid and solid filament. Insulating might change that and cause the extruder to clog. This difference is normal and normally no problem at all.
  • It is work in progress, but I started a documentation that also should help to understand: https://docfirmwarev2.repetier.com/ Next days there will be a bigger update with delta/dual x axis and many small fixes and additions.
  • Make sure in server config all values in Printing Time Calculations match the firmware settings. Also calibrate temperature change timings in extruder tab. Currently I think acceleration changes from slicer are not considered. We want to add that in…
  • That is pretty fast. I wonder that in these case the low jerk setting limits make a difference. Motors loose torque at high speeds are much strong at low speeds.
  • Sounds like the Y-5 always happens when Y is homed. You have back on home 5 for x and y but that should not cause this becoming a coordinate. You can try setting this to 6 to verify it does not come from this. It is more likely that you have in eepr…
  • In config tool select it in user interface. That is all you should need to do to get it working. It allears in config as FEATURE_CONTROLLER 11
  • Start speed is 50% of minimum speed. So that just enforces the mathematically required minimum speed for jerk. Change for minimum speed, no idea now. Think that it was a correction for the error at first step. That step has biggest error for low spe…
  • No, you can only open it with a file. You can also drag a file on the host and it opens this. If there is a command to simulate this it would go, but I do not know if that is possible.
  • Running from sd card will remove most advantages of the server, so that option is currently not implemented. And the duet solution only works on these boards and not in general. General solution would be upload gcode using gcode which is generally a…
  • I assume you have z min endstop and z probe set to same pin? Does M119 show z min triggered when it is trigegred? Position for homing z is set in configuration, To this the z probe offset is added but that should not be displayed. So I think you ha…
  • - G30 H R Make probe define new Z and z offset (R) at trigger point assuming z-probe measured an object of H height. is what you want. If z probe is calibrated H would be 0 and you want that height to be Z=0 so R0. But please test it first with cau…
  • Yes, it is a http request that blocks main thread. Will have to check if a callback for progress exists.
  • In th elong term this might be a good idea. I could make the license the key and test last reset against a date. Would in deed reduce the number of requests, also they are not that frequent. With 5 activations it takes more errors then most do I gue…
  • The messages form server are send every 10 seconds. How long this holds depends mainly on the moves catured between them. You can not change that, only whcih of the messages you want to see. The diameter comes from firmware I guess and simply delete…