summaryrefslogtreecommitdiff
path: root/keyboards/handwired/onekey
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-03-27 00:11:32 +1100
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commitf6e32b4e8d2ccc6eab5e94b509d2e39ec91ac7d6 (patch)
treef04f272e2c2c5a3ba1361bb326142df2171af011 /keyboards/handwired/onekey
parent694777041b1d08cca595cfcb65c5e7a8528ed1ba (diff)
V-USB: Use manufacturer and product strings from config.h (#7797)
* V-USB: Use manufacturer and product strings from config.h * Update board configs
Diffstat (limited to 'keyboards/handwired/onekey')
-rw-r--r--keyboards/handwired/onekey/keymaps/adc/config.h1
-rw-r--r--keyboards/handwired/onekey/keymaps/adc/keymap.c38
-rw-r--r--keyboards/handwired/onekey/keymaps/adc/rules.mk3
3 files changed, 0 insertions, 42 deletions
diff --git a/keyboards/handwired/onekey/keymaps/adc/config.h b/keyboards/handwired/onekey/keymaps/adc/config.h
deleted file mode 100644
index 6f70f09bee..0000000000
--- a/keyboards/handwired/onekey/keymaps/adc/config.h
+++ /dev/null
@@ -1 +0,0 @@
-#pragma once
diff --git a/keyboards/handwired/onekey/keymaps/adc/keymap.c b/keyboards/handwired/onekey/keymaps/adc/keymap.c
deleted file mode 100644
index c5294bbc3d..0000000000
--- a/keyboards/handwired/onekey/keymaps/adc/keymap.c
+++ /dev/null
@@ -1,38 +0,0 @@
-#include QMK_KEYBOARD_H
-#include "analog.h"
-#include <stdio.h>
-
-#ifndef ADC_PIN
-# define ADC_PIN A0
-#endif
-
-enum custom_keycodes {
- ADC_SAMPLE = SAFE_RANGE,
-};
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- LAYOUT(ADC_SAMPLE) //
-};
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case ADC_SAMPLE:
- if (record->event.pressed) {
- int16_t val = analogReadPin(ADC_PIN);
-
- char buffer [50];
- sprintf(buffer, "ADC:%u\n", val);
-#ifdef CONSOLE_ENABLE
- printf(buffer);
-#else
- SEND_STRING(buffer);
-#endif
- }
- break;
- }
- return false;
-};
-
-// adc_mux pinToMux(pin_t pin) {
-// return TO_MUX( ADC_CHANNEL_IN1, 0 );
-// };
diff --git a/keyboards/handwired/onekey/keymaps/adc/rules.mk b/keyboards/handwired/onekey/keymaps/adc/rules.mk
deleted file mode 100644
index a691d5488f..0000000000
--- a/keyboards/handwired/onekey/keymaps/adc/rules.mk
+++ /dev/null
@@ -1,3 +0,0 @@
-SRC += analog.c
-
-CONSOLE_ENABLE = yes