summaryrefslogtreecommitdiff
path: root/quantum/oryx.h
blob: eaef5bd3356958333f1b325072e145138dca17d0 (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
#pragma once

#include "quantum.h"
#include "webusb.h"

#ifndef WEBUSB_ENABLE
#    error "WebUSB needs to be enabled, please enable it!"
#endif

#ifndef DYNAMIC_KEYMAP_ENABLE
#    error "Dynamic Keymaps are not enabled. It must be aenbled "
#endif


enum Oryx_Command_Code {
    ORYX_GET_LAYER = WEBUSB_CMD_SAFE_RANGE,

};

enum Oryx_Event_Code {
    ORYX_EVT_KEYDOWN = WEBUSB_EVT_SAFE_RANGE,
    ORYX_EVT_KEYUP,
    ORYX_EVT_LAYER,
};



extern bool webusb_state_live_training_enabled;

bool webusb_receive_oryx(uint8_t *data, uint8_t length);
void oryx_layer_event(void);


void keyboard_pre_init_oryx(void);