aboutsummaryrefslogtreecommitdiff
path: root/users/anderson
diff options
context:
space:
mode:
authorAndrew Dunai <a@dun.ai>2020-05-09 09:59:50 +0300
committerGitHub <noreply@github.com>2020-05-08 23:59:50 -0700
commit1f7bbf279c925240630daacd3c29d51719112c3f (patch)
treed30db62ad04f34ad5043cc84afd5b733be4fd272 /users/anderson
parent803610a284ac886eaeb319b4a8d25ffbd2861152 (diff)
downloadqmk_firmware-1f7bbf279c925240630daacd3c29d51719112c3f.tar.gz
qmk_firmware-1f7bbf279c925240630daacd3c29d51719112c3f.zip
[Keyboard] Added D48 keyboard (#8548)
* [Keyboard] Added D48 keyboard. * Updated README. * Cleanups. * Moved d48 to handwired/ * Added link to build process album. * Coding conventions cleanups. * Added DS1307 RTC! * Minor cleanups. * Apply suggestions from code review Co-Authored-By: Drashna Jaelre <drashna@live.com> * Minor refactoring. * Readme fix. * Moved leftover keymap-specific code from keyboard space into keymap. * Added encoder button pins to extra matrix row. * Updated README, updated pinout & cleaned up the glcdfont * Apply suggestions from code review Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update config.h * Apply suggestions from code review Co-Authored-By: Ryan <fauxpark@gmail.com> * Added default keymap. Refactored existing keymap. * Update keyboards/handwired/d48/README.md Co-Authored-By: Ryan <fauxpark@gmail.com> * Apply suggestions from code review Co-Authored-By: Joel Challis <git@zvecr.com> * Minor alignment fix. * Update keyboards/handwired/d48/glcdfont_d48.c Co-Authored-By: Ryan <fauxpark@gmail.com> * Changes as per PR. * Apply suggestions from code review Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'users/anderson')
-rw-r--r--users/anderson/dmc12.c46
-rw-r--r--users/anderson/dmc12.h9
-rw-r--r--users/anderson/seq.c38
-rw-r--r--users/anderson/seq.h14
-rw-r--r--users/anderson/smoothled.c34
-rw-r--r--users/anderson/smoothled.h6
6 files changed, 147 insertions, 0 deletions
diff --git a/users/anderson/dmc12.c b/users/anderson/dmc12.c
new file mode 100644
index 000000000..1dd89dce4
--- /dev/null
+++ b/users/anderson/dmc12.c
@@ -0,0 +1,46 @@
1#include "dmc12.h"
2
3static uint32_t dmc12_color = 0;
4static uint16_t dmc12_timer = 0;
5static int8_t dmc12_current = 0;
6static uint8_t dmc12_direction = 1;
7
8void dmc12_start(uint32_t color, bool reset) {
9 dmc12_color = color;
10 if (reset) {
11 dmc12_timer = 0;
12 dmc12_current = 0;
13 dmc12_direction = 1;
14 }
15}
16
17void dmc12_process(void) {
18 if (!dmc12_timer) {
19 dmc12_timer = timer_read();
20 return;
21 }
22 float dist_from_center = ((float)abs(dmc12_current - RGBLED_NUM / 2)) / ((float)RGBLED_NUM);
23 if (timer_elapsed(dmc12_timer) > dist_from_center * LED_INTERVAL) {
24 dmc12_current += dmc12_direction;
25 if (dmc12_current == 0 || dmc12_current == RGBLED_NUM - 1) {
26 dmc12_direction *= -1;
27 }
28 dmc12_timer = timer_read();
29 for (int i = 0; i < RGBLED_NUM; i++) {
30 if (i > dmc12_current - LED_RADIUS && i < dmc12_current + LED_RADIUS) {
31 float intensity = (LED_RADIUS - abs(i - dmc12_current)) / ((float)LED_RADIUS);
32 if (i != dmc12_current) {
33 intensity /= 4.0;
34 }
35 rgblight_setrgb_at(
36 ((dmc12_color >> 16) & 0xFF) * intensity,
37 ((dmc12_color >> 8) & 0xFF) * intensity,
38 (dmc12_color & 0xFF) * intensity,
39 i
40 );
41 } else {
42 rgblight_setrgb_at(0, 0, 0, i);
43 }
44 }
45 }
46}
diff --git a/users/anderson/dmc12.h b/users/anderson/dmc12.h
new file mode 100644
index 000000000..6b2bf94a5
--- /dev/null
+++ b/users/anderson/dmc12.h
@@ -0,0 +1,9 @@
1// Sexy LED animation.
2
3#include "quantum.h"
4
5#define LED_INTERVAL 160
6#define LED_RADIUS 6
7
8void dmc12_start(uint32_t color, bool reset);
9void dmc12_process(void);
diff --git a/users/anderson/seq.c b/users/anderson/seq.c
new file mode 100644
index 000000000..ff5064859
--- /dev/null
+++ b/users/anderson/seq.c
@@ -0,0 +1,38 @@
1#include "seq.h"
2
3static char buffer[32];
4static uint8_t buffer_size = 0;
5
6void seq_start(void) {
7 buffer_size = 0;
8 SEND_STRING(":");
9}
10
11bool seq_feed(uint16_t keycode) {
12 if (keycode == KC_ENTER) {
13 for (int i = 0; i < buffer_size + 1; i++) {
14 tap_code(KC_BSPACE);
15 }
16 for (int i = 0; i < seq_config_size; i++) {
17 seq_t item = seq_config[i];
18 if (strncmp(item.sequence, buffer, buffer_size) == 0) {
19 send_unicode_string(item.result);
20 }
21 }
22 buffer_size = 0;
23 return false;
24 } else if (keycode == KC_BSPACE) {
25 if (buffer_size) {
26 buffer_size--;
27 tap_code(keycode);
28 }
29 return true;
30 } else {
31 if (keycode >= KC_A && keycode <= KC_Z) {
32 buffer[buffer_size++] = keycode - KC_A + 'a';
33 tap_code(keycode);
34 }
35 return true;
36 }
37}
38
diff --git a/users/anderson/seq.h b/users/anderson/seq.h
new file mode 100644
index 000000000..2da4e7615
--- /dev/null
+++ b/users/anderson/seq.h
@@ -0,0 +1,14 @@
1#include "quantum.h"
2
3#include <string.h>
4
5typedef struct seq_t {
6 const char *sequence;
7 const char *result;
8} seq_t;
9
10extern seq_t seq_config[];
11extern uint16_t seq_config_size;
12
13void seq_start(void);
14bool seq_feed(uint16_t keycode);
diff --git a/users/anderson/smoothled.c b/users/anderson/smoothled.c
new file mode 100644
index 000000000..3af729563
--- /dev/null
+++ b/users/anderson/smoothled.c
@@ -0,0 +1,34 @@
1#include <smoothled.h>
2
3static uint32_t sourceColor = 0x000000;
4static uint32_t currentColor = 0x000000;
5static uint32_t targetColor = 0x000000;
6static int32_t smoothledTimer = -1;
7
8void smoothled_set(uint32_t color) {
9 smoothledTimer = timer_read32();
10 sourceColor = currentColor;
11 targetColor = color;
12}
13
14void smoothled_process(void) {
15 if (smoothledTimer < 0) {
16 return;
17 }
18 int32_t kb = timer_elapsed32(smoothledTimer);
19 int32_t ka = SMOOTH_DURATION - kb;
20 if (kb > SMOOTH_DURATION) {
21 kb = SMOOTH_DURATION;
22 ka = 0;
23 smoothledTimer = -1;
24 }
25 currentColor = 0;
26 for (int i = 2; i >= 0; i--) {
27 uint32_t shift = i * 8;
28 currentColor |= (ka * ((uint32_t)(sourceColor >> shift) & 0xFF) + kb * ((uint32_t)(targetColor >> shift) & 0xFF)) / SMOOTH_DURATION;
29 /*currentColor |= ((targetColor >> shift) & 0xFF);*/
30 currentColor <<= 8;
31 }
32 currentColor >>= 8;
33 rgblight_setrgb((currentColor >> 16) & 0xFF, (currentColor >> 8) & 0xFF, currentColor & 0xFF);
34}
diff --git a/users/anderson/smoothled.h b/users/anderson/smoothled.h
new file mode 100644
index 000000000..bf4f8c177
--- /dev/null
+++ b/users/anderson/smoothled.h
@@ -0,0 +1,6 @@
1#include "quantum.h"
2
3#define SMOOTH_DURATION 160
4
5void smoothled_set(uint32_t color);
6void smoothled_process(void);