~ruther/qmk_firmware

ref: c28d5896adefa59efb7d2e5119fa6ec573e251ab qmk_firmware/keyboards/handwired/onekey/keymaps/hardware_id/keymap.c -rw-r--r-- 742 bytes
c28d5896 — Rutherther chore: update keymap svg 9 months ago
                                                                                
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
#include QMK_KEYBOARD_H
#include "hardware_id.h"
#include <stdio.h>
enum custom_keycodes {
    DUMP_ID = SAFE_RANGE,
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    LAYOUT_ortho_1x1(DUMP_ID)
};

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
    switch (keycode) {
        case DUMP_ID:
            if (record->event.pressed) {
                hardware_id_t id = get_hardware_id();
                char buffer[100];
                sprintf(buffer, "ID:%lu:%lu:%lu:%lu\n", id.data[0], id.data[1], id.data[2], id.data[3]);
#ifdef CONSOLE_ENABLE
                    uprintf("%s", buffer);
#else
                    send_string(buffer);
#endif
            }
            break;
    }
    return false;
};
Do not follow this link