mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-08 07:27:44 -06:00
✨ RGB_STARTUP_TEST
This commit is contained in:
parent
b2d1eb550d
commit
bb4329b65e
318 changed files with 3192 additions and 966 deletions
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3296,16 +3296,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3314,6 +3317,10 @@
|
||||||
#define RGB_LED_G_PIN 51
|
#define RGB_LED_G_PIN 51
|
||||||
#define RGB_LED_B_PIN 52
|
#define RGB_LED_B_PIN 52
|
||||||
#define RGB_LED_W_PIN -1
|
#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3367,16 +3367,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3385,6 +3388,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3368,16 +3368,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3386,6 +3389,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3272,16 +3272,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3290,6 +3293,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3272,16 +3272,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3290,6 +3293,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3364,16 +3364,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3382,6 +3385,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3275,16 +3275,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3293,6 +3296,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3275,16 +3275,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3293,6 +3296,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3273,16 +3273,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3291,6 +3294,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3272,16 +3272,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3290,6 +3293,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3272,16 +3272,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3290,6 +3293,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3309,16 +3309,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3327,6 +3330,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3309,16 +3309,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3327,6 +3330,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3309,16 +3309,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3327,6 +3330,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3309,16 +3309,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3327,6 +3330,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3304,16 +3304,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3322,6 +3325,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3304,16 +3304,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3322,6 +3325,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3304,16 +3304,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3322,6 +3325,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3275,16 +3275,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3293,6 +3296,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3304,16 +3304,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3322,6 +3325,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
#define RGB_LED
|
#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
#define RGB_LED_G_PIN 4
|
#define RGB_LED_G_PIN 4
|
||||||
#define RGB_LED_B_PIN 6
|
#define RGB_LED_B_PIN 6
|
||||||
#define RGB_LED_W_PIN -1
|
#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
#define RGB_LED
|
#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
#define RGB_LED_G_PIN 4
|
#define RGB_LED_G_PIN 4
|
||||||
#define RGB_LED_B_PIN 6
|
#define RGB_LED_B_PIN 6
|
||||||
#define RGB_LED_W_PIN -1
|
#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3286,16 +3286,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
#define RGB_LED
|
#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3304,6 +3307,10 @@
|
||||||
#define RGB_LED_G_PIN 4
|
#define RGB_LED_G_PIN 4
|
||||||
#define RGB_LED_B_PIN 6
|
#define RGB_LED_B_PIN 6
|
||||||
#define RGB_LED_W_PIN -1
|
#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
#define RGB_LED
|
#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
#define RGB_LED_G_PIN 4
|
#define RGB_LED_G_PIN 4
|
||||||
#define RGB_LED_B_PIN 6
|
#define RGB_LED_B_PIN 6
|
||||||
#define RGB_LED_W_PIN -1
|
#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3268,16 +3268,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3286,6 +3289,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3292,16 +3292,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3310,6 +3313,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3292,16 +3292,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3310,6 +3313,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3276,16 +3276,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3294,6 +3297,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3292,16 +3292,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3310,6 +3313,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3284,16 +3284,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3302,6 +3305,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3272,16 +3272,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3290,6 +3293,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3276,16 +3276,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3294,6 +3297,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3286,16 +3286,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3304,6 +3307,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3279,16 +3279,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3297,6 +3300,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3279,16 +3279,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3297,6 +3300,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3285,16 +3285,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3303,6 +3306,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3273,16 +3273,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3291,6 +3294,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3285,16 +3285,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3303,6 +3306,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3273,16 +3273,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3291,6 +3294,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3274,16 +3274,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3292,6 +3295,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3299,16 +3299,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3317,6 +3320,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3304,16 +3304,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3322,6 +3325,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3281,16 +3281,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3299,6 +3302,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3282,16 +3282,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3300,6 +3303,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3282,16 +3282,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3300,6 +3303,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3283,16 +3283,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3301,6 +3304,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3276,16 +3276,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3294,6 +3297,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3276,16 +3276,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3294,6 +3297,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3275,16 +3275,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3293,6 +3296,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3273,16 +3273,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3291,6 +3294,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3278,16 +3278,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3296,6 +3299,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3274,16 +3274,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3292,6 +3295,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3274,16 +3274,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3292,6 +3295,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3276,16 +3276,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3294,6 +3297,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3283,16 +3283,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3301,6 +3304,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3270,16 +3270,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3288,6 +3291,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3269,16 +3269,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3287,6 +3290,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3271,16 +3271,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3289,6 +3292,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
|
@ -3269,16 +3269,19 @@
|
||||||
* luminance values can be set from 0 to 255.
|
* luminance values can be set from 0 to 255.
|
||||||
* For NeoPixel LED an overall brightness parameter is also available.
|
* For NeoPixel LED an overall brightness parameter is also available.
|
||||||
*
|
*
|
||||||
* *** CAUTION ***
|
* === CAUTION ===
|
||||||
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
* LED Strips require a MOSFET Chip between PWM lines and LEDs,
|
||||||
* as the Arduino cannot handle the current the LEDs will require.
|
* as the Arduino cannot handle the current the LEDs will require.
|
||||||
* Failure to follow this precaution can destroy your Arduino!
|
* Failure to follow this precaution can destroy your Arduino!
|
||||||
|
*
|
||||||
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
* NOTE: A separate 5V power supply is required! The NeoPixel LED needs
|
||||||
* more current than the Arduino 5V linear regulator can produce.
|
* more current than the Arduino 5V linear regulator can produce.
|
||||||
* *** CAUTION ***
|
|
||||||
*
|
*
|
||||||
* LED Type. Enable only one of the following two options.
|
* Requires PWM frequency between 50 <> 100Hz (Check HAL or variant)
|
||||||
|
* Use FAST_PWM_FAN, if possible, to reduce fan noise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// LED Type. Enable only one of the following two options:
|
||||||
//#define RGB_LED
|
//#define RGB_LED
|
||||||
//#define RGBW_LED
|
//#define RGBW_LED
|
||||||
|
|
||||||
|
@ -3287,6 +3290,10 @@
|
||||||
//#define RGB_LED_G_PIN 43
|
//#define RGB_LED_G_PIN 43
|
||||||
//#define RGB_LED_B_PIN 35
|
//#define RGB_LED_B_PIN 35
|
||||||
//#define RGB_LED_W_PIN -1
|
//#define RGB_LED_W_PIN -1
|
||||||
|
//#define RGB_STARTUP_TEST // For PWM pins, fade between all colors
|
||||||
|
#if ENABLED(RGB_STARTUP_TEST)
|
||||||
|
#define RGB_STARTUP_TEST_INNER_MS 10 // (ms) Reduce or increase fading speed
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Support for Adafruit NeoPixel LED driver
|
// Support for Adafruit NeoPixel LED driver
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue