本文來源電子發燒友社區,作者:盧化月, 帖子地址:https://bbs.elecfans.com/jishu_2293168_1_1.html
非常感謝南京中科微聯合電子發燒友平臺提供的開發板。
1.硬件介紹
2.原理圖
3.新建項目
4.加載代碼
5.WS2812介紹
6.代碼
void u_delay(uint32_t i)
{
while(i--)
{
NOP;
}}
void u_pa0_low(void)
{
GPIO_Write(GPIOA,PIN0,GPIO_SET); //GPIO 輸出
NOP;NOP;NOP;NOP;NOP;
GPIO_Write(GPIOA,PIN0,GPIO_RESET); //GPIO 輸出
NOP;NOP;NOP;NOP;NOP;NOP;NOP;NOP;NOP;NOP;
}
void u_pa0_high(void)
{
GPIO_Write(GPIOA,PIN0,GPIO_SET); //GPIO 輸出
NOP;NOP;NOP;NOP;NOP;NOP;NOP;NOP;NOP;NOP;
GPIO_Write(GPIOA,PIN0,GPIO_RESET); //GPIO 輸出
NOP;NOP;NOP;NOP;NOP;
}
void u_pa0_reset(void)
{
GPIO_Write(GPIOA,PIN0,GPIO_RESET); //GPIO 輸出
u_delay(1000);
}
void u_pa0_send_data(uint8_t dat)
{
uint8_t i;
for(i=0;i<8;i++)
{
if(dat&0x80){u_pa0_high();}
else{u_pa0_low();}
dat <<= 1;
}
}
void u_pa0_send_RGB(uint8_t G,uint8_t R,uint8_t B)
{
uint8_t i;
SYS_Interrupt_Disable();
for(i=0;i<60;i++)
{
u_pa0_send_data(G);
u_pa0_send_data(R);
u_pa0_send_data(B);
}
SYS_Interrupt_Enable();//CLIC開總中斷
u_pa0_reset();
}
注意:
1.WS2812采用單極性歸零碼,對時序要求比較高,發送數據時盡量關閉中斷。
2.庫函數比寄存器操作慢。
3.開發板帶有保險絲,輸出功率受限。
-
南京中科微
+關注
關注
0文章
60瀏覽量
799
發布評論請先 登錄
相關推薦
評論