2020-07-22 16:13:52 +10:00
|
|
|
/*
|
2020-09-10 13:57:44 +10:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-07-22 16:13:52 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <zephyr.h>
|
2020-12-23 02:56:00 +11:00
|
|
|
#include <zmk/event_manager.h>
|
2020-07-23 00:10:04 +10:00
|
|
|
#include <device.h>
|
2021-01-18 16:35:56 +11:00
|
|
|
struct zmk_sensor_event {
|
2020-12-03 03:41:57 +11:00
|
|
|
uint8_t sensor_number;
|
2020-12-11 06:31:51 +11:00
|
|
|
const struct device *sensor;
|
2020-12-03 03:41:57 +11:00
|
|
|
int64_t timestamp;
|
2020-07-22 16:13:52 +10:00
|
|
|
};
|
|
|
|
|
2021-01-18 16:35:56 +11:00
|
|
|
ZMK_EVENT_DECLARE(zmk_sensor_event);
|