27 lines
384 B
C
27 lines
384 B
C
/** @file
|
|
* @brief Button Service
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2019 Marcio Montenegro <mtuxpe@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ST_BLE_SENSOR_BUTTON_SVC_H_
|
|
#define ST_BLE_SENSOR_BUTTON_SVC_H_
|
|
|
|
#include <zephyr/drivers/gpio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int button_init(gpio_callback_handler_t handler);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|