zmk_mf68/app/include/zmk/events/position-state-changed.h

19 lines
323 B
C
Raw Normal View History

2020-07-01 06:13:03 +10:00
/*
* Copyright (c) 2020 The ZMK Contributors
2020-07-01 06:13:03 +10:00
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include <zephyr.h>
#include <zmk/event-manager.h>
struct position_state_changed {
struct zmk_event_header header;
u32_t position;
bool state;
s64_t timestamp;
};
ZMK_EVENT_DECLARE(position_state_changed);