summaryrefslogtreecommitdiff
path: root/supervisor/shared
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-02-27 22:03:52 -0500
committerGitHub <noreply@github.com>2018-02-27 22:03:52 -0500
commit568c04e6afa8016062f685b2198c0209f62827f4 (patch)
treed07b76119f715add462983b335797adf64b61249 /supervisor/shared
parent6a2379fd0bfe10017d8abc5c36ef1d470c0d9b27 (diff)
parentea633117d01d94e8d56ed94344e4b3e46b4eef03 (diff)
Merge pull request #650 from tannewt/merge_2x3.0.0-alpha.2
Merge in commits from 2.x branch.
Diffstat (limited to 'supervisor/shared')
-rw-r--r--supervisor/shared/rgb_led_colors.h16
-rw-r--r--supervisor/shared/rgb_led_status.c8
2 files changed, 13 insertions, 11 deletions
diff --git a/supervisor/shared/rgb_led_colors.h b/supervisor/shared/rgb_led_colors.h
index 12f5cc3d9..cab702981 100644
--- a/supervisor/shared/rgb_led_colors.h
+++ b/supervisor/shared/rgb_led_colors.h
@@ -1,12 +1,12 @@
#define BLACK 0x000000
-#define GREEN 0x001000
-#define BLUE 0x000010
-#define CYAN 0x001010
-#define RED 0x100000
-#define ORANGE 0x100800
-#define YELLOW 0x101000
-#define PURPLE 0x100010
-#define WHITE 0x101010
+#define GREEN 0x003000
+#define BLUE 0x000030
+#define CYAN 0x003030
+#define RED 0x300000
+#define ORANGE 0x302000
+#define YELLOW 0x303000
+#define PURPLE 0x300030
+#define WHITE 0x303030
#define BOOT_RUNNING BLUE
#define MAIN_RUNNING GREEN
diff --git a/supervisor/shared/rgb_led_status.c b/supervisor/shared/rgb_led_status.c
index 4ea090042..2899c1f5d 100644
--- a/supervisor/shared/rgb_led_status.c
+++ b/supervisor/shared/rgb_led_status.c
@@ -29,8 +29,8 @@
#include "rgb_led_status.h"
#include "pins.h"
-uint8_t rgb_status_brightness = 255;
#ifdef MICROPY_HW_NEOPIXEL
+uint8_t rgb_status_brightness = 63;
#include "shared-bindings/digitalio/DigitalInOut.h"
#include "shared-bindings/neopixel_write/__init__.h"
static uint8_t status_neopixel_color[3];
@@ -39,7 +39,7 @@ static digitalio_digitalinout_obj_t status_neopixel;
#if defined(MICROPY_HW_APA102_MOSI) && defined(MICROPY_HW_APA102_SCK)
-
+uint8_t rgb_status_brightness = 255;
static uint8_t status_apa102_color[12] = {0, 0, 0, 0, 0xff, 0, 0, 0};
#ifdef CIRCUITPY_BITBANG_APA102
#include "shared-bindings/bitbangio/SPI.h"
@@ -196,7 +196,9 @@ uint32_t color_brightness(uint32_t color, uint8_t brightness) {
}
void set_rgb_status_brightness(uint8_t level){
- rgb_status_brightness = level;
+ #if defined(MICROPY_HW_NEOPIXEL) || (defined(MICROPY_HW_APA102_MOSI) && defined(MICROPY_HW_APA102_SCK))
+ rgb_status_brightness = level;
+ #endif
}
void prep_rgb_status_animation(const pyexec_result_t* result,