forked from forks/qmk_firmware
2480e5d69a
* ymdk_np21 initial support Base support of ymdk_np21 - based on jj40. Full grid layout * Update README.md Replacing description. * Adding YMDK NP21 to comunity list. Adding YMDK NP21 to community supported list.
16 lines
333 B
C
16 lines
333 B
C
/**
|
|
* Backlighting code for PS2AVRGB boards (ATMEGA32A)
|
|
* Kenneth A. (github.com/krusli | krusli.me)
|
|
*/
|
|
|
|
#ifndef BACKLIGHT_CUSTOM_H
|
|
#define BACKLIGHT_CUSTOM_H
|
|
|
|
#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);
|
|
|
|
#endif // BACKLIGHT_CUSTOM_H
|