1
0
Fork 0

The "Practice60" Board, Blue Pill powered (#4407)

* Starting point for blue pill based practice60

* Changes

* add

* try raw bin no botloader

* swap back to bootloader version

* edit

* Remove debug LED flash

* Disable JTAG to open up B3 and B4

* Add led backlight support (no breathing yet)

* Update matrix for correctness

* RGB Underglow working in a very simple state

* not as bright

* Move to handwired

* revert ChibiOS_Test changes

* Changes based on PR comments

* Address PR comments v2

* Move files
This commit is contained in:
Andrew Kannan 2018-11-12 19:31:22 -05:00 committed by Drashna Jaelre
parent 599b21b9f4
commit e653cc198e
20 changed files with 2068 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#pragma once
#include "hsv2rgb.h"
void set_leds_color_hsv(hsv_color color);
void set_leds_color_rgb(rgb_color color);
void set_led_color_hsv(hsv_color color, int pos);
void set_led_color_rgb(rgb_color color, int pos);
void leds_init(void);