1 /** @file
2  *  @brief Button Service
3  */
4 
5 /*
6  * Copyright (c) 2019 Marcio Montenegro <mtuxpe@gmail.com>
7  *
8  * SPDX-License-Identifier: Apache-2.0
9  */
10 
11 #ifndef ST_BLE_SENSOR_BUTTON_SVC_H_
12 #define ST_BLE_SENSOR_BUTTON_SVC_H_
13 
14 #include <zephyr/drivers/gpio.h>
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 int button_init(gpio_callback_handler_t handler);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif
27