forked from PAWPAW/lib_rgb
添加了用例
This commit is contained in:
23
examples/app_hsv_cycle_example/src/main.xc
Normal file
23
examples/app_hsv_cycle_example/src/main.xc
Normal file
@@ -0,0 +1,23 @@
|
||||
/** @brief RGB循环呼吸
|
||||
* @author Vergil Wong
|
||||
* @date 2023-11-11
|
||||
* @param
|
||||
* @return
|
||||
*/
|
||||
|
||||
#include "stdint.h"
|
||||
#include <stdio.h> // 包含基本的输入输出函数
|
||||
#include <platform.h> // 包含对封装的定义,引用以使用 on tile[] 语法
|
||||
#include "rgb_effect.h"
|
||||
|
||||
int main() // 定义主函数
|
||||
{
|
||||
par
|
||||
{
|
||||
on tile[1]:
|
||||
{
|
||||
cycleRGB_driver();
|
||||
}
|
||||
}
|
||||
return 0; // 返回0,表示程序正常结束
|
||||
}
|
||||
Reference in New Issue
Block a user