ผมเริ่มเขียนโปรแกรม ใช้ mikroC กับ
pic16f627a เขียนแล้วรันใด้
แต่ผมอยากใส่ สวิต กด 1 ทีแล้วโปรแกรมรันจนจบ
แล้วหยุด ถ้า กด สวิต ใหม่อีกก็จะรันอีกเหมือนเดิม
ใส่ สวิต ที่ RA0 ขา17 แบบกดติด ปล่อยดับ
จะใช้คำสั่งอะไรครับเพิ่มตรง ใหน ผมเริ่มทำครั่งแรกครับ
ยังไม่มีความรู้ภาษาCเลย ใช้เปิดหนังสือแล้วทดลองเอา
main()
{
TRISB = 0x00;
{
PORTB = 0x01;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x02;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x04;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x08;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x01;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x08;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x04;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x10;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x02;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
PORTB = 0x01;
Delay_ms(500);
PORTB = 0x00;
Delay_ms(300);
}
}
ขอความช่วยเหลือหน่อยครับ