]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/arrow_pad/arrow_pad.c
adds backlight levels to the satan keyboard (#431)
[qmk_firmware.git] / keyboard / arrow_pad / arrow_pad.c
1 #include "arrow_pad.h"
2
3 __attribute__ ((weak))
4 void matrix_init_user(void) {
5         // leave this function blank - it can be defined in a keymap file
6 };
7
8 __attribute__ ((weak))
9 void matrix_scan_user(void) {
10         // leave this function blank - it can be defined in a keymap file
11 }
12
13 __attribute__ ((weak))
14 bool process_action_user(keyrecord_t *record) {
15         // leave this function blank - it can be defined in a keymap file
16     return true;
17 }
18
19 __attribute__ ((weak))
20 void led_set_user(uint8_t usb_led) {
21         // leave this function blank - it can be defined in a keymap file
22 }
23
24 void matrix_init_kb(void) {
25         // put your keyboard start-up code here
26         // runs once when the firmware starts up
27
28 #ifdef BACKLIGHT_ENABLE
29     backlight_init_ports();
30 #endif
31
32         matrix_init_user();
33 }
34
35 void matrix_scan_kb(void) {
36         // put your looping keyboard code here
37         // runs every cycle (a lot)
38
39         matrix_scan_user();
40 }
41
42 bool process_action_kb(keyrecord_t *record) {
43         // put your per-action keyboard code here
44         // runs for every action, just before processing by the firmware
45
46         return process_action_user(record);
47 }
48
49 void led_set_kb(uint8_t usb_led) {
50         // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
51
52         led_set_user(usb_led);
53 }
54
55 #ifdef BACKLIGHT_ENABLE
56 #define CHANNEL OCR1C
57
58 void backlight_init_ports()
59 {
60
61     // Setup PB7 as output and output low.
62     DDRB |= (1<<7);
63     PORTB &= ~(1<<7);
64     
65     // Use full 16-bit resolution. 
66     ICR1 = 0xFFFF;
67
68     // I could write a wall of text here to explain... but TL;DW
69     // Go read the ATmega32u4 datasheet.
70     // And this: http://blog.saikoled.com/post/43165849837/secret-konami-cheat-code-to-high-resolution-pwm-on
71     
72     // Pin PB7 = OCR1C (Timer 1, Channel C)
73     // Compare Output Mode = Clear on compare match, Channel C = COM1C1=1 COM1C0=0
74     // (i.e. start high, go low when counter matches.)
75     // WGM Mode 14 (Fast PWM) = WGM13=1 WGM12=1 WGM11=1 WGM10=0
76     // Clock Select = clk/1 (no prescaling) = CS12=0 CS11=0 CS10=1
77     
78     TCCR1A = _BV(COM1C1) | _BV(WGM11); // = 0b00001010;
79     TCCR1B = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001;
80
81     backlight_init();
82 }
83
84 void backlight_set(uint8_t level)
85 {
86     if ( level == 0 )
87     {
88         // Turn off PWM control on PB7, revert to output low.
89         TCCR1A &= ~(_BV(COM1C1));
90         CHANNEL = 0x0;
91         // Prevent backlight blink on lowest level
92         PORTB &= ~(_BV(PORTB7));
93     }
94     else if ( level == BACKLIGHT_LEVELS )
95     {
96         // Prevent backlight blink on lowest level
97         PORTB &= ~(_BV(PORTB7));
98         // Turn on PWM control of PB7
99         TCCR1A |= _BV(COM1C1);
100         // Set the brightness
101         CHANNEL = 0xFFFF;
102     }
103     else        
104     {
105         // Prevent backlight blink on lowest level
106         PORTB &= ~(_BV(PORTB7));
107         // Turn on PWM control of PB7
108         TCCR1A |= _BV(COM1C1);
109         // Set the brightness
110         CHANNEL = 0xFFFF >> ((BACKLIGHT_LEVELS - level) * ((BACKLIGHT_LEVELS + 1) / 2));
111     }
112 }
113
114 #endif