• 方案介紹
  • 附件下載
  • 相關(guān)推薦
申請(qǐng)入駐 產(chǎn)業(yè)圖譜

基于51單片機(jī)控制的恒流源設(shè)計(jì)

2024/10/25
2608
加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點(diǎn)資訊討論

有需要資料的可了解一下.docx

共1個(gè)文件

51單片機(jī)作為主控制器實(shí)現(xiàn)的恒流源設(shè)計(jì)

部分程序:

#include "reg52.h" //stc頭文件

#include "Delay.h" //延時(shí)頭文件

//設(shè)置按鍵

sbit KEY_ADD = P3^2; //加

sbit KEY_DEC = P3^3; //減

//DA

sbit SCK = P2^0;

sbit CS = P2^1;

sbit DIN = P2^2;

int ADC_num = 0;

/*=========================================

//按鍵掃描處理函數(shù)

=========================================*/

void KEY_Scan( void )

{

if( KEY_ADD == 0 ) // 按鍵按下

{

Delay_ms(1); //延時(shí)消抖

while( !KEY_ADD ); //松手檢測(cè)

ADC_num = ADC_num + 102;

if( ADC_num >= 512 )

{

ADC_num = 512;

}

}

if( KEY_DEC == 0 ) // 按鍵按下

{

Delay_ms(1); //延時(shí)消抖

while( !KEY_DEC ); //松手檢測(cè)

ADC_num = ADC_num - 102;

if( ADC_num <= 0 )

{

ADC_num = 0;

}

}

}

/*=========================================

//DA

=========================================*/

void TCL5615_DAC(unsigned int Data)

{

unsigned char i;

Data <<= 6; //移除高6位,int型數(shù)據(jù)有16位,該DA是10位

SCK = 0; //在片選有效前,時(shí)鐘信號(hào)要為低

CS = 0;; //片選有效

for(i=0;i<12;i++) //每次轉(zhuǎn)換需要10個(gè)時(shí)鐘下降沿

{

if(Data&0x8000) //取最高位數(shù)據(jù),模擬串行數(shù)據(jù)

{

DIN = 1;

SCK = 0;

SCK = 1;

}

else

{

?紛傳文章借鑒與此

  • 有需要資料的可了解一下.docx
    下載

相關(guān)推薦

方案定制

去合作
方案開(kāi)發(fā)定制化,2000+方案商即時(shí)響應(yīng)!