21 lines
311 B
C
21 lines
311 B
C
/*
|
|
* WS2812_SPI.h
|
|
*
|
|
* Created on: Sep 4, 2023
|
|
* Author: arunrawat
|
|
*/
|
|
|
|
#ifndef INC_WS2812_SPI_H_
|
|
#define INC_WS2812_SPI_H_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void setLED (int led, int RED, int GREEN, int BLUE);
|
|
void WS2812_Send (void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* INC_WS2812_SPI_H_ */
|