Adjust z offset button octo pi

looking to do this https://www.kodamaforums.com/phpBB3/viewtopic.php?t=2060# and I did some research on config.yaml on locations but nothing really on how to create it via octoprint.

Do I need to ssh and insert file via putty? having the z offset on octoprint would be handy.

You would ssh to your pi and then edit your config.yaml using something like the following command.

nano ~/.octoprint/config.yaml

There's also a discussion over here on another similar set-up for Marlin.

You could also add babystepping buttons like this.

controls:
- children:
  - command: M290 Z%(distance)s
    input:
    - default: 0.25
      name: Distance
      parameter: distance
    name: Up
  - command: M290 Z-%(distance)s
    input:
    - default: 0.25
      name: Distance
      parameter: distance
    name: Down
  layout: vertical
  name: Baby Stepping
1 Like