( เครื่อง เตือนน้ำล้น)
เครื่อง เตือนน้ำล้น
อุปกรณ์
1. PIC16F877A
2. LCD
3. LED
4. BUZZER
5. CAPACITOR 22pf
6. CRYSTAL 4MHz
7. แหลงจ่ายไฟ 5v
5. CAPACITOR 22pf
6. CRYSTAL 4MHz
7. แหลงจ่ายไฟ 5v
Code
char *text = "Overflow";
char *text3 =".Normal.";
char *text1 = "Plase TurnOFF";
char *text2 = ".level Normal.";
void main() {
TRISC = 0xFF;
TRISB = 0;
TRISD = 0;
PORTC = 1 ;
PORTD = 0 ;
Lcd_Init(&PORTB);
Lcd_Cmd(Lcd_CLEAR);
Lcd_Cmd(Lcd_CURSOR_OFF);
//Lcd_Out(2, 2, text2);
while(1)
{
if(PORTC.F1==0)
{
PORTD.F0=1;
PORTD.F1=1;
Lcd_Out(1, 5, text);
Lcd_Out(2, 2, text1);
}
else
{
Lcd_Out(1, 5, text3);
Lcd_Out(2, 2, text2);
}
PORTD=0;
}
}
https://youtu.be/q6dcZaZSuRA
แหล่งอ้างอิง
https://bankaazz123.blogspot.com/2019/03/2.html?m=1
char *text3 =".Normal.";
char *text1 = "Plase TurnOFF";
char *text2 = ".level Normal.";
void main() {
TRISC = 0xFF;
TRISB = 0;
TRISD = 0;
PORTC = 1 ;
PORTD = 0 ;
Lcd_Init(&PORTB);
Lcd_Cmd(Lcd_CLEAR);
Lcd_Cmd(Lcd_CURSOR_OFF);
//Lcd_Out(2, 2, text2);
while(1)
{
if(PORTC.F1==0)
{
PORTD.F0=1;
PORTD.F1=1;
Lcd_Out(1, 5, text);
Lcd_Out(2, 2, text1);
}
else
{
Lcd_Out(1, 5, text3);
Lcd_Out(2, 2, text2);
}
PORTD=0;
}
}
การทำงาน
https://youtu.be/q6dcZaZSuRA
แหล่งอ้างอิง
https://bankaazz123.blogspot.com/2019/03/2.html?m=1
ความคิดเห็น
แสดงความคิดเห็น