f0edc993b7
* introduce wkl directory and readme * move bface into winkeyless directory and edit readme for new make instructions * move bmini into the winkeyless directory and edit readme * move bmini ex into winkeyless directory * edit readme some more * add newbs guide to readmes * fix path to bface * temporarily turn off community layout support until we refactor this taking out all the custom ps2avrgb stuff
14 lines
262 B
C
14 lines
262 B
C
/**
|
|
* Backlighting code for PS2AVRGB boards (ATMEGA32A)
|
|
* Kenneth A. (github.com/krusli | krusli.me)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <avr/pgmspace.h>
|
|
void b_led_init_ports(void);
|
|
void b_led_set(uint8_t level);
|
|
void b_led_task(void);
|
|
void setPWM(uint16_t xValue);
|
|
|