Separate Neopixels followup (#19179)
This commit is contained in:
parent
2a72961be4
commit
41c7ae5d54
@ -110,7 +110,7 @@ public:
|
|||||||
#if CONJOINED_NEOPIXEL
|
#if CONJOINED_NEOPIXEL
|
||||||
adaneo2.show();
|
adaneo2.show();
|
||||||
#else
|
#else
|
||||||
adaneo1.setPin(NEOPIXEL2_PIN);
|
TERN_(NEOPIXEL2_SEPARATE,,adaneo1.setPin(NEOPIXEL2_PIN));
|
||||||
adaneo1.show();
|
adaneo1.show();
|
||||||
adaneo1.setPin(NEOPIXEL_PIN);
|
adaneo1.setPin(NEOPIXEL_PIN);
|
||||||
#endif
|
#endif
|
||||||
@ -161,7 +161,10 @@ extern Marlin_NeoPixel neo;
|
|||||||
static inline void begin() { adaneo.begin(); }
|
static inline void begin() { adaneo.begin(); }
|
||||||
static inline void set_pixel_color(const uint16_t n, const uint32_t c) { adaneo.setPixelColor(n, c); }
|
static inline void set_pixel_color(const uint16_t n, const uint32_t c) { adaneo.setPixelColor(n, c); }
|
||||||
static inline void set_brightness(const uint8_t b) { adaneo.setBrightness(b); }
|
static inline void set_brightness(const uint8_t b) { adaneo.setBrightness(b); }
|
||||||
static inline void show() { adaneo.show(); }
|
static inline void show() {
|
||||||
|
adaneo.show();
|
||||||
|
adaneo.setPin(NEOPIXEL2_PIN);
|
||||||
|
}
|
||||||
|
|
||||||
// Accessors
|
// Accessors
|
||||||
static inline uint16_t pixels() { return adaneo.numPixels();}
|
static inline uint16_t pixels() { return adaneo.numPixels();}
|
||||||
|
@ -780,8 +780,3 @@
|
|||||||
#ifndef EXTRUDE_MINTEMP
|
#ifndef EXTRUDE_MINTEMP
|
||||||
#define EXTRUDE_MINTEMP 170
|
#define EXTRUDE_MINTEMP 170
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// This flag indicates if Neopixel pins are shared or separated
|
|
||||||
#if EITHER(MULTIPLE_NEOPIXEL_TYPES, NEOPIXEL2_INSERIES)
|
|
||||||
#define CONJOINED_NEOPIXEL 1
|
|
||||||
#endif
|
|
||||||
|
Loading…
Reference in New Issue
Block a user