mirror of
https://github.com/ghsecuritylab/ameba_ws2812b.git
synced 2024-11-01 01:44:16 +00:00
22 lines
149 B
C
22 lines
149 B
C
|
|
|
|
|
|
#ifndef __WS2812B_H__
|
|
#define __WS2812B_H__
|
|
|
|
|
|
|
|
typedef struct {
|
|
void (*init)(void);
|
|
} ws2812b_t;
|
|
|
|
|
|
|
|
extern ws2812b_t ws2812b;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|