Skip to content

Instantly share code, notes, and snippets.

View DanTheC0der's full-sized avatar
🎯
Focusing

Danny DanTheC0der

🎯
Focusing
View GitHub Profile
@ChipCE
ChipCE / readme.md
Last active August 3, 2025 13:03
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)
@expeditioneer
expeditioneer / client.cfg
Last active February 14, 2025 05:16
My custom Klipper configuration used with a modified Ender 3, BL Touch and SKR Mini E3 DIP
## Client klipper macro definitions
##
## Copyright (C) 2022 Alex Zellner <alexander.zellner@googlemail.com>
##
## This file may be distributed under the terms of the GNU GPLv3 license
##
## !!! This file is read-only. Maybe the used editor indicates that. !!!
##
## Customization:
## 1) copy the gcode_macro _CLIENT_VARIABLE (see below) to your printer.cfg
@lightfromshadows
lightfromshadows / MJPEGStreamDecoder.cs
Created October 15, 2019 19:16
Simple MJPEG stream decoder for Unity written in C#
/*
* I needed a simple MJPEG Stream Decoder and I couldn't find one that worked for me.
*
* It reads a response stream and when there's a new frame it updates the render texture.
* That's it. No authenication or options.
* It's something stupid simple for readimg a video stream from an equally stupid simple Arduino.
*
* I fixed most of the large memory leaks, but there's at least one small one left.
*/