Sử dụng hàm "IntToStr' chuyển đổi một biến định dạng số sang ký tự để hiển thị lên LCD
Sau đây là project ví dụ về dùng hàm "IntToStr" để xuất một số kiểu Int ra LCD.
![]() |
Display number on LCD use "IntToStr" function |
Code in MikrocC:
/* Author: Minh Trung
Site: http:dientudieukhien.net
*/
//config lcd
sbit LCD_RS at RD4_bit;
sbit LCD_EN at RD5_bit;
sbit LCD_D7 at RD3_bit;
sbit LCD_D6 at RD2_bit;
sbit LCD_D5 at RD1_bit;
sbit LCD_D4 at RD0_bit;
sbit LCD_RS_Direction at TRISD4_bit;
sbit LCD_EN_Direction at TRISD5_bit;
sbit LCD_D7_Direction at TRISD3_bit;
sbit LCD_D6_Direction at TRISD2_bit;
sbit LCD_D5_Direction at TRISD1_bit;
sbit LCD_D4_Direction at TRISD0_bit;
// end config lcd
int tempc=115;
char tempc_txt[10];
void _Init(){
Lcd_Init();
TRISD=0x00;
PORTD=0x00;
Lcd_Cmd(_LCD_CURSOR_OFF);
Lcd_Cmd(_LCD_CLEAR);
}
void main() {
_Init();
inttostr(tempc,tempc_txt);
Lcd_Out(1,3,tempc_txt);
}
*Ps: tương tự bạn có thể sử dụng hàm "FloatToStr", "LongToStr", "ByteToStr", "ShortToStr".
|| Download code in c and Proteus
0 nhận xét: