summaryrefslogtreecommitdiffstats
path: root/keyboard/clueboard2/backlight.c
blob: 5dfa4ba0aeb7cdda30f18fe55e6a36e4e57c1125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

#include <avr/io.h>
#include "backlight.h"
#include "print.h"

/* Clueboard 2.0 LED locations:
 *
 * Capslock: B4, pull high to turn on
 * LCtrl: Shared with Capslock, DO NOT INSTALL LED'S IN BOTH
 * Page Up: B7, pull high to turn on
 * Escape: D6, pull high to turn on
 * Arrows: D4, pull high to turn on
 */

void init_backlight_pin(void) {
    print("init_backlight_pin()\n");
    // Set our LED pins as output
    DDRD |= (1<<6); // Esc
    DDRB |= (1<<7); // Page Up
    DDRD |= (1<<4); // Arrows

    // Set our LED pins low
    PORTD &= ~(1<<6); // Esc
    PORTB &= ~(1<<7); // Page Up
    PORTD &= ~(1<<4); // Arrows
}

void backlight_set(uint8_t level) {
    if ( level == 0 ) {
        // Turn off light
        PORTD |= (1<<6); // Esc
        PORTB |= (1<<7); // Page Up
        PORTD |= (1<<4); // Arrows
    } else {
        // Turn on light
        PORTD &= ~(1<<6); // Esc
        PORTB &= ~(1<<7); // Page Up
        PORTD &= ~(1<<4); // Arrows
    }
}