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.
23 lines
374 B
23 lines
374 B
/*
|
|
* Copyright (c) 2019, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef LEDS_H_
|
|
#define LEDS_H_
|
|
|
|
#include "platform.h"
|
|
#include "McuLED.h"
|
|
|
|
/* led handles */
|
|
#if PL_BOARD_IS_TINYK22
|
|
extern McuLED_Handle_t blueLED;
|
|
#else
|
|
extern McuLED_Handle_t redLED, blueLED, greenLED;
|
|
#endif
|
|
|
|
void LEDS_Deinit(void);
|
|
void LEDS_Init(void);
|
|
|
|
#endif /* LEDS_H_ */
|
|
|