@@ -51,7 +51,7 @@ void new_status_color(uint32_t rgb) {
5151 status_neopixel_color [0 ] = (rgb >> 8 ) & 0xff ;
5252 status_neopixel_color [1 ] = (rgb >> 16 ) & 0xff ;
5353 status_neopixel_color [2 ] = rgb & 0xff ;
54- common_hal_neopixel_write (& status_neopixel , status_neopixel_color , 3 , true );
54+ common_hal_neopixel_write (& status_neopixel , status_neopixel_color , 3 );
5555 #endif
5656 #if defined(MICROPY_HW_APA102_MOSI ) && defined(MICROPY_HW_APA102_SCK )
5757 status_apa102_color [5 ] = rgb & 0xff ;
@@ -64,7 +64,7 @@ void new_status_color(uint32_t rgb) {
6464void temp_status_color (uint32_t rgb ) {
6565 #ifdef MICROPY_HW_NEOPIXEL
6666 uint8_t colors [3 ] = {(rgb >> 8 ) & 0xff , (rgb >> 16 ) & 0xff , rgb & 0xff };
67- common_hal_neopixel_write (& status_neopixel , colors , 3 , true );
67+ common_hal_neopixel_write (& status_neopixel , colors , 3 );
6868 #endif
6969 #if defined(MICROPY_HW_APA102_MOSI ) && defined(MICROPY_HW_APA102_SCK )
7070 uint8_t colors [12 ] = {0 , 0 , 0 , 0 , 0xff , rgb & 0xff , (rgb >> 8 ) & 0xff , (rgb >> 16 ) & 0xff , 0x0 , 0x0 , 0x0 , 0x0 };
@@ -74,7 +74,7 @@ void temp_status_color(uint32_t rgb) {
7474
7575void clear_temp_status () {
7676 #ifdef MICROPY_HW_NEOPIXEL
77- common_hal_neopixel_write (& status_neopixel , status_neopixel_color , 3 , true );
77+ common_hal_neopixel_write (& status_neopixel , status_neopixel_color , 3 );
7878 #endif
7979 #if defined(MICROPY_HW_APA102_MOSI ) && defined(MICROPY_HW_APA102_SCK )
8080 shared_module_bitbangio_spi_write (& status_apa102 , status_apa102_color , 12 );
0 commit comments