gitextract_3uvhfo04/ ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug-report.md │ ├── feature_request.md │ └── getting-help.md ├── FreeDiLCD/ │ ├── LICENSE │ ├── freedi_update.sh │ └── start.py ├── LICENSE ├── README.md ├── config_section/ │ ├── Plus4/ │ │ ├── macros.cfg │ │ └── printer.cfg │ ├── Q1_Pro/ │ │ ├── macros.cfg │ │ └── printer.cfg │ ├── X-Max3/ │ │ ├── macros.cfg │ │ └── printer.cfg │ ├── X-Plus3/ │ │ ├── macros.cfg │ │ └── printer.cfg │ ├── X-Smart3/ │ │ ├── macros.cfg │ │ └── printer.cfg │ ├── generic/ │ │ ├── crowsnest.conf │ │ ├── freedi.cfg │ │ └── moonraker.conf │ └── template/ │ ├── macros.cfg │ └── printer.cfg ├── helpers/ │ ├── AutoFlasher.service │ ├── FreeDi.service │ ├── dtbo/ │ │ └── rockchip-mkspi-uart1.dtbo │ ├── flashtool.py │ ├── freedi-prerequisites-1.0-all.deb │ ├── hid-flash │ ├── klipper_auto_flasher.sh │ ├── usbmounter.sh │ └── wifi/ │ └── aic8800-dkms.deb ├── install/ │ ├── freedi_install.conf │ ├── packages.sh │ └── wifi.sh ├── install.sh ├── klipper_module/ │ ├── freedi.py │ └── qidi_auto_z_offset/ │ ├── LICENSE │ ├── README.md │ └── auto_z_offset.py ├── mainboard_and_toolhead_firmwares/ │ └── v0.13.0-154/ │ ├── Toolhead_Q1_katapult.uf2 │ ├── Toolhead_X3.uf2 │ └── flash_nuke.uf2 ├── old_mainboard_and_toolhead_firmwares/ │ └── v0.10.0-530_old_stock/ │ └── Toolhead_RP2040.uf2 ├── presliced_z-offset_calibration_files/ │ ├── Plus4/ │ │ └── z-offset_calibration_Plus4_PLA_4m4s.gcode │ ├── Q1_Pro/ │ │ └── z-offset_calibration_Q1_Pro_PLA_4m6s.gcode │ ├── X-Max3/ │ │ └── z-offset_calibration_X-Max3_PLA_8m46s.gcode │ ├── X-Plus3/ │ │ └── z-offset_calibration_X-Plus3_PLA_4m4s.gcode │ └── X-Smart3/ │ └── z-offset_calibration_X-Smart3_PLA_8m38s.gcode ├── requirements.txt ├── screen_firmwares/ │ ├── q1_pro_stable_v2.08.tft │ ├── x-plus3_x-max3_plus4_stable_v2.08.tft │ └── x-smart3_stable_v2.08.tft └── themes/ ├── Plus4/ │ └── .theme/ │ └── custom.css ├── Q1_Pro/ │ └── .theme/ │ └── custom.css ├── X-Max3/ │ └── .theme/ │ └── custom.css ├── X-Plus3/ │ └── .theme/ │ └── custom.css └── X-Smart3/ └── .theme/ └── custom.css