VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

Recent content by ark

  1. ark

    Question SET_PAUSE_NEXT_LAYER is not working

    Do you have the required SET_PRINT_STATS_INFO command in your slicer custom gcode? https://github.com/fluidd-core/fluidd-config#new-feature-pause-at-next-layer-and-pause-at-layer-
  2. ark

    Question The value of adxl345 z is always over 9000

    This is normal - you are seeing gravitational acceleration.
  3. ark

    Mystery printed parts ID?

    Left: https://github.com/MotorDynamicsLab/LDOVoron2/blob/e433ac85ecf93b42a0b451f50ac20af8e55030ef/STLs/LDOSBCW2MountCover/pcb_spacer.stl Right: https://github.com/MotorDynamicsLab/LDOVoron2/blob/e433ac85ecf93b42a0b451f50ac20af8e55030ef/STLs/LDOSBCW2MountCover/deprecated/LDOSBCW2Mount.stl These...
  4. ark

    Backer plates, Ti or stainles steel?

    Weight savings are only practical if you use a backer on the X axis (which is in my opinion unnecessary with a single front rail). I personally think titanium is a waste of money, unless corrosion of steel is an issue in your environment. The backer options are titanium or (non-stainless)...
  5. ark

    Solved Restart_method

    Can you post your exact klipper config file? restart_method is only valid in a [mcu] section, but maybe there is a syntax issue making it think it's in another section.
  6. ark

    Inconsistent home / centering speed?

    Probably whatever gcode is doing the move is a G0 or G1 with no speed specified, so it is using the speed of the previous G0/G1. Check the macro for such a command and make sure at least the first one has a F parameter (speed in mm/min).
  7. ark

    QUAD_GANTRY_LEVEL fails due very high Actuator Positions

    One potential issue I see is that your QGL points are in the wrong order, which can cause problems: points: 50, 50 250,50 250,250 50,250 They should be in the same order as the motors. Try using the values from the stock config (for a 300 size build): points: 50,25 50,225...
  8. ark

    [Solved] Nozzle temp

    Gcode comments start with ; and not # I don't know why Klipper ignores # at the start of a G or M code line but it does. Change it to a semicolon and you should be good. Comments with # in your macro work because those are config file comments, so aren't even part of the gcode template.
  9. ark

    Canbus help

    Looks like that package was just updated, the latest version works for me now. So ignore the above instructions and upgrade it instead: cd ~/klippy-env bin/pip install -U aenum
  10. ark

    Canbus help

    I had that issue too, it is a problem with the latest versions of one of klipper's dependencies. You can fix it by downgrading: cd ~/klippy-env bin/pip install aenum==3.1.12 and then restart the klipper service.
Top