mirror of
https://gitee.com/dlmu-cone/tronone-h7-scaffold
synced 2026-07-24 03:27:45 +08:00
30 lines
472 B
C
30 lines
472 B
C
#ifndef ws2812status_H
|
|
#define ws2812status_H
|
|
|
|
/*---------------------INCLUDES----------------------*/
|
|
#include "main.h"
|
|
#include "cmsis_os.h"
|
|
#include "tim.h"
|
|
#include "ws2812.h"
|
|
|
|
/*---------------------FUNCTIONS---------------------*/
|
|
void ws2812Task(void *argument);
|
|
|
|
void robotSelfCheck(void);
|
|
|
|
void BlinkYellow(void);
|
|
|
|
void BlinkRed(void);
|
|
|
|
void BlinkBlue(void);
|
|
|
|
void BlinkGreen(void);
|
|
|
|
void BlinkWhite(void);
|
|
|
|
void BlinkCyan(void);
|
|
|
|
void BlinkPurple(void);
|
|
|
|
#endif
|