blob: 190b59db16875ab3e30dade68b7005f9735d9627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <zephyr.h>
#include <zmk/event-manager.h>
struct position_state_changed {
struct zmk_event_header header;
u32_t position;
bool state;
};
ZMK_EVENT_DECLARE(position_state_changed);
|