加入星計劃,您可以享受以下權(quán)益:

  • 創(chuàng)作內(nèi)容快速變現(xiàn)
  • 行業(yè)影響力擴散
  • 作品版權(quán)保護
  • 300W+ 專業(yè)用戶
  • 1.5W+ 優(yōu)質(zhì)創(chuàng)作者
  • 5000+ 長期合作伙伴
立即加入

基于51單片機的電機功率測量【直流】(仿真)

11/21 08:45
924
服務(wù)支持:
技術(shù)交流群

完成交易后在“購買成功”頁面掃碼入群,即可與技術(shù)大咖們分享疑惑和經(jīng)驗、收獲成長和認同、領(lǐng)取優(yōu)惠和紅包等。

虛擬商品不可退

當前內(nèi)容為數(shù)字版權(quán)作品,購買后不支持退換且無法轉(zhuǎn)移使用。

加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點資訊討論
放大
實物圖
相關(guān)方案
  • 方案介紹
  • 相關(guān)文件
  • 相關(guān)推薦
  • 電子產(chǎn)業(yè)圖譜
申請入駐 產(chǎn)業(yè)圖譜

電機功能測量:

1、測量直流電機的電壓電流,計算功率

2、設(shè)計采樣電路,通過AD芯片測量參數(shù)

3、LCD顯示測量結(jié)果

4、按鍵控制電機轉(zhuǎn)速

#include"LCD.H"

void write_com(unsigned char com) //寫命令
{
	RS_CLR;
	RW_CLR;
	P0=com;
	DelayMs(3);
	EN_SET;
	DelayMs(3);
	EN_CLR;
}

void write_data(unsigned char date)	 //寫一個字符
{
	RS_SET;
	RW_CLR;
	P0=date;
	DelayMs(3);
	EN_SET;
	DelayMs(3);
	EN_CLR;
}

void init()			//初始化
{
	write_com(0x38);
	write_com(0x0c);
	write_com(0x06);
	write_com(0x01);
}

/*------------------------------------------------ 
              寫入字符串函數(shù)
------------------------------------------------*/
void LCD_Write_String(unsigned char x,unsigned char y,unsigned char *s) 
{     
 	if (y == 0) 
 	{     
	 	write_com(0x80 + x);     
 	}
 	else 
 	{     
 		write_com(0xC0 + x);     
 	}        
 	while (*s) 
 	{     
 		write_data( *s);     
 		s ++;     
 	}
}
#include"LCD.H"

void write_com(unsigned char com) //寫命令
{
	RS_CLR;
	RW_CLR;
	P0=com;
	DelayMs(3);
	EN_SET;
	DelayMs(3);
	EN_CLR;
}

void write_data(unsigned char date)	 //寫一個字符
{
	RS_SET;
	RW_CLR;
	P0=date;
	DelayMs(3);
	EN_SET;
	DelayMs(3);
	EN_CLR;
}

void init()			//初始化
{
	write_com(0x38);
	write_com(0x0c);
	write_com(0x06);
	write_com(0x01);
}

/*------------------------------------------------ 
              寫入字符串函數(shù)
------------------------------------------------*/
void LCD_Write_String(unsigned char x,unsigned char y,unsigned char *s) 
{     
 	if (y == 0) 
 	{     
	 	write_com(0x80 + x);     
 	}
 	else 
 	{     
 		write_com(0xC0 + x);     
 	}        
 	while (*s) 
 	{     
 		write_data( *s);     
 		s ++;     
 	}
}

?

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

相關(guān)推薦

電子產(chǎn)業(yè)圖譜