Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)
* fixes from tmk's repo * rename keyboard to keyboards
This commit is contained in:
parent
464c8e274f
commit
649b33d778
545 changed files with 1752 additions and 15315 deletions
24
keyboards/satan/backlight.c
Normal file
24
keyboards/satan/backlight.c
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
#include <avr/io.h>
|
||||
#include "backlight.h"
|
||||
#include "print.h"
|
||||
|
||||
void init_backlight_pin(void) {
|
||||
print("init_backlight_pin()\n");
|
||||
// Set our LED pins as output
|
||||
DDRB |= (1<<6);
|
||||
|
||||
// Set our LED pins low
|
||||
PORTB &= ~(1<<6);
|
||||
}
|
||||
|
||||
void backlight_set(uint8_t level) {
|
||||
if ( level == 0 ) {
|
||||
// Turn off light
|
||||
PORTB |= (1<<6);
|
||||
} else {
|
||||
// Turn on light
|
||||
PORTB &= ~(1<<6);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue