Files
lib_rgb/examples/app_hsv_cycle_example/src/main.xc
Vergil_Wong 5b227abc8b 修复了用例
- 更改了默认的亮度参数,以获得更好的效果
2023-11-12 16:36:51 +08:00

24 lines
466 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/** @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]:
{
cycleHSV_driver();
}
}
return 0; // 返回0表示程序正常结束
}