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.
26 lines
362 B
26 lines
362 B
/*
|
|
* Copyright (c) 2019, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef LEDS_H_
|
|
#define LEDS_H_
|
|
|
|
#include "McuLED.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* led handles */
|
|
extern McuLED_Handle_t LEDS_Left, LEDS_Right;
|
|
|
|
void LEDS_Deinit(void);
|
|
void LEDS_Init(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* LEDS_H_ */
|
|
|