LED Macros
#130
Replies: 2 comments
-
Thanks for the suggestion. But I'm not sure we need this by default in the mod because the same can be achieved directly via the Klipper built-in command or from Mainsail/Fluidd/Klipper-Screen UI. |
Beta Was this translation helpful? Give feedback.
0 replies
-
No worries. I mainly did it to have a simple one button click in Mainsail from my phone. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I added LEDs to my AD5M and wanted a way to turn them on and off. Here's the macros I came up with.
`[gcode_macro LED_ON]
gcode:
{% set Brightness = params.VALUE|default(80)|float %}
SET_LED LED=chamber_led WHITE={Brightness / 100} SYNC=0 TRANSMIT=1
[gcode_macro LED_OFF]
gcode:
LED_ON VALUE=0`
Beta Was this translation helpful? Give feedback.
All reactions