Skip to content

Instantly share code, notes, and snippets.

@ChipCE
ChipCE / readme.md
Last active April 16, 2024 23:07
Klipper bed mesh on print area only macro install guide

READ THIS FIRST

Adaptive bed mesh is merged into klipper master branch. You can use this feature without this custom macro. Official klipper adaptive bed mesh

Klipper mesh on print area only install guide

What this macro do

  • This macro will dynamically changing the bed mesh area based on the size of the parts will be printed. The fw will only probe on the area that the part will be printed (plus mesh_area_offset value)
@LemonBoy
LemonBoy / unqar.py
Created November 17, 2018 18:07
Quick and dirty script to extract Quartus II .qar archives
# Quick and dirty script to extract Quartus II .qar archives
import os, sys, struct, zlib
buf = open(sys.argv[1], 'rb').read()
file_no = struct.unpack_from('<H', buf, 2)[0]
off = 4
for _ in range(file_no):
(len, unk, filename_len) = struct.unpack_from('<IHH', buf, off)