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 Sandman50

  1. S

    How to have the V0.2 automatically set Z offset when changing build sheets. (or maybe not so automatic)

    You can write a macro to manually update the saved Z offset, likely by a "saved config" access to a [Variables] file. Just a guess there. It would need to be manually pressed prior to every print, and care take when writing it so you base the offset from Zero, for example, not the prior offset...
  2. S

    Question Which stl model is used for this hotend? I didn't find it.

    Pretty sure it's a Bambu X1c clone.
  3. S

    Voron 2.4 dialing in ABS on a new 350mm build

    Adding bed fans will increase the chamber temp as well as the speed it gets there. Can add a chamber thermistor, or just have the printer wait ~30 minutes before starting the print. https://mods.vorondesign.com/details/28xgztUufAtAfV4XUL5l4w Also possible to add in a forbidden heater to raise...
  4. S

    Rear of Gantry falls after print

    NVM, found the fix. Moved the Z "position_min" from -5 to -10. [stepper_z] step_pin: PD7 dir_pin: !PD6 enable_pin: !PF10 rotation_distance: 40 gear_ratio: 80:16 microsteps: 16 #endstop_pin: ^PF5 endstop_pin: probe: z_virtual_endstop position_max: 340 position_min: -10 homing_speed: 20...
  5. S

    Rear of Gantry falls after print

    I have a 2.5 350. Problem is that after a print is done and the motors turn off the rear of the gantry drops enough that QGL will fail on the next print. When that happens I need to manually lift the rear of the gantry to level it out. What would prevent this? Higher pre-load rear rails...
  6. S

    Need Help Getting Klipper installed on a Kraken mcu Or MCU

    https://github.com/Klipper3d/klipper/tree/master/config This is the github for the config references. BTT published their generic config (that NoGuru posted above) Klipper wants the printer.cfg. Just copy the default kraken to your printer, rename the file to "printer.cfg" and start there...
  7. S

    Question Newly build V0.2r1 having mcu disconnect issues.

    Current Klipper is: 0.12.0-396 - so you are close enough. But you might want to upgrade the rest to 396 and see if that's the problem. Also update / upgrade the Pi so that is all current. sudo apt update && sudo apt upgrade -y The shutdown code for the V0 default display: #Shutdown from...
  8. S

    Question Newly build V0.2r1 having mcu disconnect issues.

    The pi and the main board are loosing the connection. So start with the basics. Check the wires - wiggle them a bit when it's powered up to see what happens. It could also be power to the Pico, but not as likely. Check those wires just the same. What Pi are you using and what OS image? I've...
  9. S

    CANBus not going well. EBB SB 2240/2209.

    Stop the Klipper service on the Pi by running: sudo service klipper stop Run an ls /dev/serial/by-id/ and take note of the Katapult device that it shows. If klipper is running it will grab the uuid and then not display it via that command. So need to stop it 1st.
  10. S

    New 2.4 r2 will not home

    If the end stops are triggered, it thinks it's already home. So it won't move. (assuming the toolhead isn't against the endstops) You will need to add a "!" in the line like this: https://docs.vorondesign.com/build/startup/#endstop-check The standard practice is for the enstop switches to be...
  11. S

    CANBus not going well. EBB SB 2240/2209.

    https://canbus.esoterical.online/ Follow this guide. Possible to start from step 1 and redo the work just to ensure it's all correct. The other thing about CAN is that it's a bus communication tech, so the wires are connected H-H and L-L. Not H-L, L-H 1) Like this: [mcu] canbus_uuid...
  12. S

    Update voron 2.4 with RPI 3 to RPI 4, how to

    Now would be a good time to setup a backup process: :) https://docs.vorondesign.com/community/howto/EricZimmerman/BackupConfigToGithub.html Easy way to collect all your files. Easy button is to download them to a PC, then upload directly vs using a git pull process.
  13. S

    EBB SB2209 (RP2040) to octopus canbus?

    The one note about connecting them. Can bus is a ... bus technology. Therefore you connect the Can H to the Can H and the Can L to the Can L.
  14. S

    Yet Another printer.cfg Request (M8P w/EBB SB2209 CAN(RP2040))

    I'd recommend not starting with virtual end stops - it's one more thing that needs to be tuned that doesn't need to be. My Tap probe code: ################################### # Tap Probe ################################### [probe] pin: EBBCan: PB5 (should be GPIO21 or 22 depending on what...
Top