当前位置:   article > 正文

STM32单片机控制WS2812彩色灯带_stm32控制ws2812

stm32控制ws2812

欢迎入群共同学习交流
时间记录:2023/12/2

一、基础介绍

__NOP();宏为空操作,大概1/72us
GPIO口可直接控制
1 数据传输时序图
输入码型
2 数据传输时间
数据传输时间
3 数据传输方式
数据传输方式
4 24bit数据结构(高位先发)
24bit数据结构

二、代码实现(GPIO和延时直接实现)

头文件(.h)

#ifndef __WS2812X_H__
#define __WS2812X_H__
#include <stm32f10x.h>
#include "delay.h"
#include "sys.h"

void vWs2812xInit(void);
void vWs2812xWrite3Byte(u32 colorData);
void vWs2812xReset(void);

#endif

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

源文件(.c)

#include "ws2812x.h"

static void vDelay21Nop(void);
static void vWriteBit0(void);
static void vWriteBit1(void);

void vWs2812xInit(void)
{
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
    
    GPIO_InitTypeDef GPIO_InitStruct;
    GPIO_InitStruct.GPIO_Pin = GPIO_Pin_0;
    GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
    GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_Init(GPIOA,&GPIO_InitStruct);
    
    GPIO_SetBits(GPIOA,GPIO_Pin_0);
    Delay_Init();
}

static void vDelay21Nop(void)
{
    __NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();
    __NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();__NOP();
    __NOP();
}

static void vWriteBit0(void)
{
    PAout(0)=1;
    vDelay21Nop();
    PAout(0)=0;
    vDelay21Nop();
    vDelay21Nop();
    vDelay21Nop();
}

static void vWriteBit1(void)
{
    PAout(0)=1;
    vDelay21Nop();
    vDelay21Nop();
    vDelay21Nop();
    PAout(0)=0;
    vDelay21Nop();
}

void vWs2812xWrite3Byte(u32 colorData)
{
    for(u8 index=0;index<24;index++){
        if((colorData << index) & 0x800000)
            vWriteBit1();
        else
            vWriteBit0();
    }
}

void vWs2812xReset(void)
{
    PAout(0)=0;
    Delay_Us(500);
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63

三、实现的蹦迪灯效果

蹦迪灯

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/643434
推荐阅读
相关标签
  

闽ICP备14008679号