blob: 7058276e01382fcddcb8d2b44dc816cad6ef31ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include <zephyr.h>
#include <zmk/event-manager.h>
struct position_state_changed {
struct zmk_event_header header;
uint32_t position;
bool state;
int64_t timestamp;
};
ZMK_EVENT_DECLARE(position_state_changed);
|