1. Device : PIC12F508
2. Compiler : CCS-C
3. Down Loader : MPLAB IDE & PICKIT2
4. Source file
#include "C:\KnifeSterilizer\KnifeCtl.h"
#include <stdio.h>
#ZERO_RAM
#include "KeyCheck.c" // Key Scan Routine
//==============================================================================
void main()
{
GPIO = 0x20;
set_tris_b(0x18); // 1=input, 0=output
setup_timer_0(RTCC_INTERNAL|RTCC_DIV_8);
while(1){
if(TMR0 == 0x80){
// 1mSec Timer counter Interrupt Routine
TMR0 = 0;
if(++mSec250Counter >= 250){
TestPin = ~TestPin;
// 250mSec Timer counter Interrupt Routine
mSec250Counter = 0;
}
// Key Scan Routine
KeyScan();
}
}
}
'PIC Microcontroller' 카테고리의 다른 글
[스크랩] 오늘부터 며칠간 PIC18F4450 device에 검토내용을 올릴예 전 입니다. (0) | 2014.09.04 |
---|---|
발진클럭을 내부 발진으로 사용시 주의 사항 (0) | 2012.08.21 |
PIC12F675 기본 프로그램 (0) | 2011.05.31 |
MPLAB IDE ( Target 보드 구성시 주의 사항 ) (0) | 2010.08.12 |
16F723 기본 프로그램 (0) | 2010.06.28 |