forked from zellneralex/klipper_config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaselight.cfg
52 lines (48 loc) · 1.48 KB
/
caselight.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#####################################################################
# Caselight pin Definition
#####################################################################
## Caselight - XYE board, HB Connector
[output_pin caselight]
pin: P2.5
pwm: true
hardware_pwm: true
shutdown_value: 0
cycle_time: 0.0001
#####################################################################
# Macros
#####################################################################
[gcode_macro _CASELIGHT_ON]
description: Helper: Light on
gcode:
SET_PIN PIN=caselight VALUE={printer['gcode_macro _USER_VARIABLE'].caselight_on}
{action_respond_info("Caselight on")}
[gcode_macro _CASELIGHT_OFF]
description: Helper: Light off
gcode:
SET_PIN PIN=caselight VALUE=0.0
{action_respond_info("Caselight off")}
[gcode_macro CASELIGHT]
description: Toggle light
gcode:
{%if printer['output_pin caselight'].value == 0 %}
_CASELIGHT_ON
{% else %}
_CASELIGHT_OFF
{% endif %}
#####################################################################
# Display Menu definition #
#####################################################################
[menu __main __control __caselightonoff]
type: input
enable: {'output_pin caselight' in printer}
name: Lights: {'ON ' if menu.input else 'OFF'}
input: {printer['output_pin caselight'].value}
input_min: 0
input_max: 1
input_step: 1
gcode:
{% if menu.input %}
_CASELIGHT_ON
{% else %}
_CASELIGHT_OFF
{% endif %}