ソースを参照

Neopixel => NeoPixel

Scott Lahteine 3年前
コミット
638f6f0f06

+ 5
- 5
Marlin/Configuration.h ファイルの表示

2062
 //#define FYSETC_MINI_12864_X_X    // Type C/D/E/F. No tunable RGB Backlight by default
2062
 //#define FYSETC_MINI_12864_X_X    // Type C/D/E/F. No tunable RGB Backlight by default
2063
 //#define FYSETC_MINI_12864_1_2    // Type C/D/E/F. Simple RGB Backlight (always on)
2063
 //#define FYSETC_MINI_12864_1_2    // Type C/D/E/F. Simple RGB Backlight (always on)
2064
 //#define FYSETC_MINI_12864_2_0    // Type A/B. Discreet RGB Backlight
2064
 //#define FYSETC_MINI_12864_2_0    // Type A/B. Discreet RGB Backlight
2065
-//#define FYSETC_MINI_12864_2_1    // Type A/B. Neopixel RGB Backlight
2065
+//#define FYSETC_MINI_12864_2_1    // Type A/B. NeoPixel RGB Backlight
2066
 //#define FYSETC_GENERIC_12864_1_1 // Larger display with basic ON/OFF backlight.
2066
 //#define FYSETC_GENERIC_12864_1_1 // Larger display with basic ON/OFF backlight.
2067
 
2067
 
2068
 //
2068
 //
2332
  * Adds the M150 command to set the LED (or LED strip) color.
2332
  * Adds the M150 command to set the LED (or LED strip) color.
2333
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
2333
  * If pins are PWM capable (e.g., 4, 5, 6, 11) then a range of
2334
  * luminance values can be set from 0 to 255.
2334
  * luminance values can be set from 0 to 255.
2335
- * For Neopixel LED an overall brightness parameter is also available.
2335
+ * For NeoPixel LED an overall brightness parameter is also available.
2336
  *
2336
  *
2337
  * *** CAUTION ***
2337
  * *** CAUTION ***
2338
  *  LED Strips require a MOSFET Chip between PWM lines and LEDs,
2338
  *  LED Strips require a MOSFET Chip between PWM lines and LEDs,
2339
  *  as the Arduino cannot handle the current the LEDs will require.
2339
  *  as the Arduino cannot handle the current the LEDs will require.
2340
  *  Failure to follow this precaution can destroy your Arduino!
2340
  *  Failure to follow this precaution can destroy your Arduino!
2341
- *  NOTE: A separate 5V power supply is required! The Neopixel LED needs
2341
+ *  NOTE: A separate 5V power supply is required! The NeoPixel LED needs
2342
  *  more current than the Arduino 5V linear regulator can produce.
2342
  *  more current than the Arduino 5V linear regulator can produce.
2343
  * *** CAUTION ***
2343
  * *** CAUTION ***
2344
  *
2344
  *
2355
   //#define RGB_LED_W_PIN -1
2355
   //#define RGB_LED_W_PIN -1
2356
 #endif
2356
 #endif
2357
 
2357
 
2358
-// Support for Adafruit Neopixel LED driver
2358
+// Support for Adafruit NeoPixel LED driver
2359
 //#define NEOPIXEL_LED
2359
 //#define NEOPIXEL_LED
2360
 #if ENABLED(NEOPIXEL_LED)
2360
 #if ENABLED(NEOPIXEL_LED)
2361
   #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
2361
   #define NEOPIXEL_TYPE   NEO_GRBW // NEO_GRBW / NEO_GRB - four/three channel driver type (defined in Adafruit_NeoPixel.h)
2368
   #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
2368
   #define NEOPIXEL_BRIGHTNESS 127  // Initial brightness (0-255)
2369
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
2369
   //#define NEOPIXEL_STARTUP_TEST  // Cycle through colors at startup
2370
 
2370
 
2371
-  // Use a single Neopixel LED for static (background) lighting
2371
+  // Use a single NeoPixel LED for static (background) lighting
2372
   //#define NEOPIXEL_BKGD_LED_INDEX  0               // Index of the LED to use
2372
   //#define NEOPIXEL_BKGD_LED_INDEX  0               // Index of the LED to use
2373
   //#define NEOPIXEL_BKGD_COLOR { 255, 255, 255, 0 } // R, G, B, W
2373
   //#define NEOPIXEL_BKGD_COLOR { 255, 255, 255, 0 } // R, G, B, W
2374
 #endif
2374
 #endif

+ 1
- 1
Marlin/Configuration_adv.h ファイルの表示

488
   //#define CASE_LIGHT_MAX_PWM 128            // Limit pwm
488
   //#define CASE_LIGHT_MAX_PWM 128            // Limit pwm
489
   //#define CASE_LIGHT_MENU                   // Add Case Light options to the LCD menu
489
   //#define CASE_LIGHT_MENU                   // Add Case Light options to the LCD menu
490
   //#define CASE_LIGHT_NO_BRIGHTNESS          // Disable brightness control. Enable for non-PWM lighting.
490
   //#define CASE_LIGHT_NO_BRIGHTNESS          // Disable brightness control. Enable for non-PWM lighting.
491
-  //#define CASE_LIGHT_USE_NEOPIXEL           // Use Neopixel LED as case light, requires NEOPIXEL_LED.
491
+  //#define CASE_LIGHT_USE_NEOPIXEL           // Use NeoPixel LED as case light, requires NEOPIXEL_LED.
492
   #if ENABLED(CASE_LIGHT_USE_NEOPIXEL)
492
   #if ENABLED(CASE_LIGHT_USE_NEOPIXEL)
493
     #define CASE_LIGHT_NEOPIXEL_COLOR { 255, 255, 255, 255 } // { Red, Green, Blue, White }
493
     #define CASE_LIGHT_NEOPIXEL_COLOR { 255, 255, 255, 255 } // { Red, Green, Blue, White }
494
   #endif
494
   #endif

+ 1
- 1
Marlin/src/feature/leds/neopixel.h ファイルの表示

22
 #pragma once
22
 #pragma once
23
 
23
 
24
 /**
24
 /**
25
- * Neopixel support
25
+ * NeoPixel support
26
  */
26
  */
27
 
27
 
28
 // ------------------------
28
 // ------------------------

+ 1
- 1
Marlin/src/gcode/feature/leds/M150.cpp ファイルの表示

35
  *                                    If brightness is left out, no value changed
35
  *                                    If brightness is left out, no value changed
36
  *
36
  *
37
  * With NEOPIXEL_LED:
37
  * With NEOPIXEL_LED:
38
- *  I<index>  Set the Neopixel index to affect. Default: All
38
+ *  I<index>  Set the NeoPixel index to affect. Default: All
39
  *
39
  *
40
  * Examples:
40
  * Examples:
41
  *
41
  *

+ 1
- 1
Marlin/src/pins/lpc1768/pins_BTT_SKR_V1_4.h ファイルの表示

345
 #endif
345
 #endif
346
 
346
 
347
 //
347
 //
348
-// Neopixel LED
348
+// NeoPixel LED
349
 //
349
 //
350
 #ifndef NEOPIXEL_PIN
350
 #ifndef NEOPIXEL_PIN
351
   #define NEOPIXEL_PIN                     P1_24
351
   #define NEOPIXEL_PIN                     P1_24

読み込み中…
キャンセル
保存