Skip to content

Instantly share code, notes, and snippets.

@wight554
wight554 / cool_down_to_temp_and_hold.py
Last active September 9, 2025 14:54
Klipper (kalico only) annealing macros
def format_time(minutes):
hours = minutes // 60
mins = minutes % 60
if hours > 0 and mins > 0:
return f"{hours}h{mins}m"
elif hours > 0:
return f"{hours}h"
else:
return f"{mins}m"
@EricZimmerman
EricZimmerman / frequencytester.md
Last active December 23, 2023 23:46 — forked from kmobs/frequencytester.md
Frequency Tester

Frequency Testing

This will allow you to test a specific frequency that you hear when you do your resonance testing in Klipper and potentially track down where extra peaks are coming from. If something is rattling at a specific frequency, you can specify that frequency and feel around the printer until you track it down.

Code was adopted by zifnab from somewhere in Klipper.

Usage

You have to have [resonance_holder] in your printer.cfg.

The command is HOLD_RESONANCE AXIS=<axis> FREQ=int SECONDS=<seconds>

@RZN-FFEvo
RZN-FFEvo / Configuration.h
Created April 18, 2020 17:35
MPSM SKR E3 DIP Marlin 2.0.5.2
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or