change neopixel color
This commit is contained in:
parent
5e0195ddb4
commit
f30199f503
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -87,7 +87,7 @@ void board_init(void)
|
||||
extern void neopixel_init(void);
|
||||
neopixel_init();
|
||||
|
||||
uint8_t grb[3] = { 0, 255, 0 };
|
||||
uint8_t grb[3] = { 0, 32, 0 };
|
||||
neopixel_write(grb);
|
||||
#endif
|
||||
|
||||
@ -256,6 +256,11 @@ void neopixel_init(void)
|
||||
|
||||
void neopixel_teardown(void)
|
||||
{
|
||||
uint8_t grb[3] = { 0, 0, 0 };
|
||||
neopixel_write(grb);
|
||||
|
||||
NRFX_DELAY_US(100);
|
||||
|
||||
pwm_teardown(NRF_PWM2);
|
||||
}
|
||||
|
||||
|
@ -158,7 +158,7 @@ void usb_teardown(void)
|
||||
void tud_mount_cb(void)
|
||||
{
|
||||
#ifdef LED_NEOPIXEL
|
||||
uint8_t grb[3] = { 255, 0, 0 };
|
||||
uint8_t grb[3] = { 32, 0, 0 };
|
||||
neopixel_write(grb);
|
||||
#endif
|
||||
}
|
||||
@ -166,7 +166,7 @@ void tud_mount_cb(void)
|
||||
void tud_umount_cb(void)
|
||||
{
|
||||
#ifdef LED_NEOPIXEL
|
||||
uint8_t grb[3] = { 0, 255, 0 };
|
||||
uint8_t grb[3] = { 0, 32, 0 };
|
||||
neopixel_write(grb);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user