资源简介

本资源为STM32F407通过SPI+DMA的方式驱动WS2812的驱动demo,里面包含有SPI和DMA的详细配置及注释,也含有WS2812的一些基本颜色和点亮控制方式,具体讲解请看博客。

资源截图

代码片段和文件信息

/********************************* (C) COPYRIGHT 2019 曼珠沙华 ****************************************************
* File Name          : ws2812.c
* Author             : @曼珠沙华
* Date               : 2019/12/27
* Description        : ws2812 fileled相关
*                     
* Includes ------------------------------------------------------------------*/
#include “WS2812.h“
#include “delay.h“

#if SYSTEM_SUPPORT_OS
#include “FreeRTOS.h“ //FreeRTOS使用   
#include “task.h“
#endif

// Some Static Colors
const RGBColor_TypeDef RED      = {25500};
const RGBColor_TypeDef GREEN    = {02550};
const RGBColor_TypeDef BLUE     = {00255};
const RGBColor_TypeDef SKY      = {0255255};
const RGBColor_TypeDef MAGENTA  = {2550255};
const RGBColor_TypeDef YELLOW   = {2552550};

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      14457  2020-03-14 11:05  ws2812\ws2812.c

     文件       1714  2020-03-14 11:04  ws2812\ws2812.h

     目录          0  2020-03-14 09:13  ws2812

----------- ---------  ---------- -----  ----

                16171                    3


评论

共有 条评论