aboutsummaryrefslogtreecommitdiff
path: root/keyboards/donutcables
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-11-05 11:05:03 +1100
committerDrashna Jaelre <drashna@live.com>2019-11-04 16:05:03 -0800
commitefa28d0f5cca55b0dfecaddd0860ec3dfeab8bb0 (patch)
treeaab048a027771fa8ab55b535bce64e101e861680 /keyboards/donutcables
parent0a9a69394e132c3d00eddffd2e345f48113e56c4 (diff)
downloadqmk_firmware-efa28d0f5cca55b0dfecaddd0860ec3dfeab8bb0.tar.gz
qmk_firmware-efa28d0f5cca55b0dfecaddd0860ec3dfeab8bb0.zip
Convert some PS2AVRGB boards to I2C WS2812 driver (#7241)
* Convert some PS2AVRGB boards to I2C WS2812 driver * Fix Travis failure for bface
Diffstat (limited to 'keyboards/donutcables')
-rw-r--r--keyboards/donutcables/budget96/budget96.c71
-rw-r--r--keyboards/donutcables/budget96/rules.mk20
2 files changed, 10 insertions, 81 deletions
diff --git a/keyboards/donutcables/budget96/budget96.c b/keyboards/donutcables/budget96/budget96.c
index 2fc826f09..e9125a3e6 100644
--- a/keyboards/donutcables/budget96/budget96.c
+++ b/keyboards/donutcables/budget96/budget96.c
@@ -13,61 +13,8 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#include "budget96.h"
17
18#ifdef BACKLIGHT_ENABLE
19#include "backlight.h"
20#endif
21#ifdef RGBLIGHT_ENABLE
22#include "rgblight.h"
23#endif
24
25#include <avr/pgmspace.h>
26
27#include "action_layer.h"
28#include "i2c_master.h"
29#include "quantum.h"
30
31__attribute__ ((weak))
32void matrix_scan_user(void) {
33}
34
35#ifdef RGBLIGHT_ENABLE
36extern rgblight_config_t rgblight_config;
37
38void rgblight_set(void) {
39 if (!rgblight_config.enable) {
40 for (uint8_t i = 0; i < RGBLED_NUM; i++) {
41 led[i].r = 0;
42 led[i].g = 0;
43 led[i].b = 0;
44 }
45 }
46
47 i2c_init();
48 i2c_transmit(0xb0, (uint8_t*)led, 3 * RGBLED_NUM, 100);
49}
50#endif
51
52void matrix_init_kb(void) {
53#ifdef RGBLIGHT_ENABLE
54 if (rgblight_config.enable) {
55 i2c_init();
56 i2c_transmit(0xb0, (uint8_t*)led, 3 * RGBLED_NUM, 100);
57 }
58#endif
59 // call user level keymaps, if any
60 matrix_init_user();
61}
62
63void matrix_scan_kb(void) {
64#ifdef RGBLIGHT_ENABLE
65 rgblight_task();
66#endif
67 matrix_scan_user();
68 /* Nothing else for now. */
69}
70 16
17#include "budget96.h"
71 18
72void backlight_init_ports(void) { 19void backlight_init_ports(void) {
73 // initialize pins D0, D1, D4 and D6 as output 20 // initialize pins D0, D1, D4 and D6 as output
@@ -76,25 +23,25 @@ void backlight_init_ports(void) {
76 setPinOutput(D4); 23 setPinOutput(D4);
77 setPinOutput(D6); 24 setPinOutput(D6);
78 25
79 // turn RGB LEDs on 26 // turn backlight LEDs on
80 writePinHigh(D0); 27 writePinHigh(D0);
81 writePinHigh(D1); 28 writePinHigh(D1);
82 writePinHigh(D4); 29 writePinHigh(D4);
83 writePinHigh(D6); 30 writePinHigh(D6);
84} 31}
85 32
86 void backlight_set(uint8_t level) { 33void backlight_set(uint8_t level) {
87 if (level == 0) { 34 if (level == 0) {
88 // turn RGB LEDs off 35 // turn backlight LEDs off
89 writePinLow(D0); 36 writePinLow(D0);
90 writePinLow(D1); 37 writePinLow(D1);
91 writePinLow(D4); 38 writePinLow(D4);
92 writePinLow(D6); 39 writePinLow(D6);
93 } else { 40 } else {
94 // turn RGB LEDs on 41 // turn backlight LEDs on
95 writePinHigh(D0); 42 writePinHigh(D0);
96 writePinHigh(D1); 43 writePinHigh(D1);
97 writePinHigh(D4); 44 writePinHigh(D4);
98 writePinHigh(D6); 45 writePinHigh(D6);
99 } 46 }
100 } 47}
diff --git a/keyboards/donutcables/budget96/rules.mk b/keyboards/donutcables/budget96/rules.mk
index 4f9e0e412..54328d248 100644
--- a/keyboards/donutcables/budget96/rules.mk
+++ b/keyboards/donutcables/budget96/rules.mk
@@ -1,18 +1,3 @@
1# Copyright 2017 Luiz Ribeiro <luizribeiro@gmail.com>
2#
3# This program is free software: you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation, either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# MCU name 1# MCU name
17MCU = atmega32a 2MCU = atmega32a
18 3
@@ -34,9 +19,6 @@ CONSOLE_ENABLE = yes
34COMMAND_ENABLE = yes 19COMMAND_ENABLE = yes
35BACKLIGHT_ENABLE = yes 20BACKLIGHT_ENABLE = yes
36RGBLIGHT_ENABLE = yes 21RGBLIGHT_ENABLE = yes
37RGBLIGHT_CUSTOM_DRIVER = yes 22WS2812_DRIVER = i2c
38 23
39OPT_DEFS = -DDEBUG_LEVEL=0 24OPT_DEFS = -DDEBUG_LEVEL=0
40
41# custom matrix setup
42SRC = i2c_master.c