summaryrefslogtreecommitdiff
path: root/app/include/zmk/events/battery-state-changed.h
blob: a983820b93bd8df16fa6cce2b3dc86087d41ef52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2020 The ZMK Contributors
 *
 * SPDX-License-Identifier: MIT
 */

#pragma once

#include <zephyr.h>
#include <zmk/event-manager.h>

struct battery_state_changed {
    struct zmk_event_header header;
    // TODO: Other battery channels
    uint8_t state_of_charge;
};

ZMK_EVENT_DECLARE(battery_state_changed);