PROJECTS SECTION
Latest Edits

Showing last edited date

Klipper Firmware Posts

Showing all previous posts in section

  • Mar 18, 2022 Klipper Setup
    The need for speed starts here
  • Nov 7, 2021 Secondary MCU for AXDL
    initial plan found out that the attiny85 is not a supported device in klipper. using atmega328p dev board instead Flashed Klipper Firmware on Arduino Nano # make menuconfig disabled low level config pulled down the compiled file, named the file firmware.hex had avrdude from platformio $ ~/.platformio/packages/tool-avrdude/avrdude -v -p atmega328p -C $HOME/.platformio/packages/tool-avrdude/avrdude.conf -c arduino -b 57600 -D -P /dev/ttyUSB0 -U flash:w:firmware.hex:i Using Arduino Nano Atmega328P # adxl345 - this on has on board voltage regulator
  • Nov 7, 2021 Klipper Macros
    Setting up and Tutorials here and good place to learn all the macros on github uses Jinja templating language [gcode_macro pause_toggle] variable_pause_resume_state: None # pause is 1 gcode: ## Two ways, 1. # {% set pause_resume_state = pause_resume_state | default('pause', true) %} # SET_GCODE_VARIABLE MACRO=pause_toggle VARIABLE=pause_resume_state VALUE="'{ pause_resume_state }'" # 2. SET_GCODE_VARIABLE MACRO=pause_toggle VARIABLE=pause_resume_state VALUE="'{ pause_resume_state | default('pause', true) }'" # Check end position to determine safe direction to move {% if printer['gcode_macro pause_toggle'].
comments powered by Disqus