Ender 3 V3 SE/KE LED Light Mount (Remix)
by Ko T · via Printables
| Format | STL |
| Category | Art |
| License | CC BY-NC-SA |
| Triangles | 1.1k |
| Uploaded | Aug 20, 2024 |
⬇ 177 downloads
❤ 57 likes
👁 2.1k views
Description
You can split two parts 12V led strips and serial connect directly to 24V PSU. You can parallel connect two parts 12V led strips and use DC-DC MP2315 or similar, and use MCU J10 (pin 5) to control led strips as caselight from klipper. [include caselight.cfg] in printer.cfg ##################################################################### # Caselight pin Definition ##################################################################### ## Caselight - creality board, J10 Connector pin 5 [output_pin caselight] pin: PC0 pwm: false value: 1 shutdown_value: 0 ##################################################################### # Macros ##################################################################### [gcode_macro _CASELIGHT_ON] description: Helper: Light on gcode: SET_PIN PIN=caselight VALUE=1 {action_respond_info("Caselight on")} [gcode_macro _CASELIGHT_OFF] description: Helper: Light off gcode: SET_PIN PIN=caselight VALUE=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 %}
Originally published on Printables