mirror of
https://gitee.com/dlmu-cone/tronone-h7-scaffold
synced 2026-07-23 19:25:09 +08:00
13 lines
191 B
C
13 lines
191 B
C
#ifndef WS2812_H
|
|
#define WS2812_H
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
#define WS2812_SPI_UNIT hspi6
|
|
extern SPI_HandleTypeDef WS2812_SPI_UNIT;
|
|
|
|
void WS2812_Ctrl(uint8_t r, uint8_t g, uint8_t b);
|
|
#endif
|