|
@ -27,6 +27,17 @@ |
|
|
uint8_t case_light_brightness = CASE_LIGHT_DEFAULT_BRIGHTNESS; |
|
|
uint8_t case_light_brightness = CASE_LIGHT_DEFAULT_BRIGHTNESS; |
|
|
bool case_light_on = CASE_LIGHT_DEFAULT_ON; |
|
|
bool case_light_on = CASE_LIGHT_DEFAULT_ON; |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(CASE_LIGHT_USE_NEOPIXEL) |
|
|
|
|
|
#include "leds/leds.h" |
|
|
|
|
|
LEDColor case_light_color = |
|
|
|
|
|
#ifdef CASE_LIGHT_NEOPIXEL_COLOR |
|
|
|
|
|
CASE_LIGHT_NEOPIXEL_COLOR |
|
|
|
|
|
#else |
|
|
|
|
|
{ 255, 255, 255, 255 } |
|
|
|
|
|
#endif |
|
|
|
|
|
; |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* The following are needed because ARM chips ignore a "WRITE(CASE_LIGHT_PIN,x)" command to the pins that |
|
|
* The following are needed because ARM chips ignore a "WRITE(CASE_LIGHT_PIN,x)" command to the pins that |
|
|
* are directly controlled by the PWM module. In order to turn them off the brightness level needs to be |
|
|
* are directly controlled by the PWM module. In order to turn them off the brightness level needs to be |
|
@ -34,32 +45,39 @@ bool case_light_on = CASE_LIGHT_DEFAULT_ON; |
|
|
* to save it. |
|
|
* to save it. |
|
|
*/ |
|
|
*/ |
|
|
uint8_t case_light_brightness_sav; // saves brighness info so can restore when "M355 S1" received
|
|
|
uint8_t case_light_brightness_sav; // saves brighness info so can restore when "M355 S1" received
|
|
|
bool case_light_arg_flag; // flag to notify if S or P arguement type
|
|
|
bool case_light_arg_flag; // flag to notify if S or P argument type
|
|
|
|
|
|
|
|
|
#ifndef INVERT_CASE_LIGHT |
|
|
#ifndef INVERT_CASE_LIGHT |
|
|
#define INVERT_CASE_LIGHT false |
|
|
#define INVERT_CASE_LIGHT false |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
void update_case_light() { |
|
|
void update_case_light() { |
|
|
SET_OUTPUT(CASE_LIGHT_PIN); |
|
|
|
|
|
|
|
|
|
|
|
if (!(case_light_arg_flag && !case_light_on)) |
|
|
if (!(case_light_arg_flag && !case_light_on)) |
|
|
case_light_brightness_sav = case_light_brightness; // save brightness except if this is an S0 arguement
|
|
|
case_light_brightness_sav = case_light_brightness; // save brightness except if this is an S0 argument
|
|
|
if (case_light_arg_flag && case_light_on) |
|
|
if (case_light_arg_flag && case_light_on) |
|
|
case_light_brightness = case_light_brightness_sav; // restore last brightens if this is an S1 arguement
|
|
|
case_light_brightness = case_light_brightness_sav; // restore last brightens if this is an S1 argument
|
|
|
|
|
|
|
|
|
|
|
|
const uint8_t i = case_light_on ? case_light_brightness : 0, n10ct = INVERT_CASE_LIGHT ? 255 - i : i; |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(CASE_LIGHT_USE_NEOPIXEL) |
|
|
|
|
|
|
|
|
if (case_light_on) { |
|
|
leds.set_color( |
|
|
|
|
|
MakeLEDColor(case_light_color.r, case_light_color.g, case_light_color.b, case_light_color.w, n10ct), |
|
|
|
|
|
false |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
#else // !CASE_LIGHT_USE_NEOPIXEL
|
|
|
|
|
|
|
|
|
|
|
|
SET_OUTPUT(CASE_LIGHT_PIN); |
|
|
if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) |
|
|
if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) |
|
|
analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 - case_light_brightness : case_light_brightness); |
|
|
analogWrite(CASE_LIGHT_PIN, n10ct); |
|
|
else |
|
|
|
|
|
WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? LOW : HIGH); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
else { |
|
|
if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) |
|
|
const bool s = case_light_on ? !INVERT_CASE_LIGHT : INVERT_CASE_LIGHT; |
|
|
analogWrite(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? 255 : 0); |
|
|
WRITE(CASE_LIGHT_PIN, s ? HIGH : LOW); |
|
|
else |
|
|
|
|
|
WRITE(CASE_LIGHT_PIN, INVERT_CASE_LIGHT ? HIGH : LOW); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#endif // !CASE_LIGHT_USE_NEOPIXEL
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#endif // HAS_CASE_LIGHT
|
|
|
#endif // HAS_CASE_LIGHT
|
|
|