mirror of
https://gitee.com/dlmu-cone/tronone-h7-scaffold
synced 2026-07-24 03:27:45 +08:00
11 lines
186 B
C
11 lines
186 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
|