zephyr-configurator/snippets/bluetooth/led/led_svc.h
H4CK3R-01 a75c2d467c
All checks were successful
Build & Publish / build (push) Successful in 8m17s
Added new bluetooth samples
2023-09-08 13:28:04 +02:00

26 lines
341 B
C

/** @file
* @brief LED Service sample
*/
/*
* Copyright (c) 2019 Marcio Montenegro <mtuxpe@gmail.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ST_BLE_SENSOR_LED_SVC_H_
#define ST_BLE_SENSOR_LED_SVC_H_
#ifdef __cplusplus
extern "C" {
#endif
void led_update(void);
int led_init(void);
#ifdef __cplusplus
}
#endif
#endif