1 /** @file
2  *  @brief LED Service sample
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_LED_SVC_H_
12 #define ST_BLE_SENSOR_LED_SVC_H_
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 void led_update(void);
19 int led_init(void);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
26