You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
326 B
17 lines
326 B
4 years ago
|
/*
|
||
|
* Copyright (c) 2020 The ZMK Contributors
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
#define EXT_POWER_OFF_CMD 0
|
||
|
#define EXT_POWER_ON_CMD 1
|
||
|
|
||
|
/*
|
||
|
* Note: Some future commands might include additional parameters, so we
|
||
|
* defines these aliases up front.
|
||
|
*/
|
||
|
|
||
|
#define EP_ON EXT_POWER_ON_CMD 0
|
||
|
#define EP_OFF EXT_POWER_OFF_CMD 0
|