Seri pembelajaran Mikrokontroler PIC kali ini adalah membaca nilai ADC (Analog to Digital Converter) yang akan di tamplkan pada LCD (Liquid Crystal Display, Mikrokontroler jenis PIC ini rata-rata telah memiliki ADC Internal 10 bit, ADC ini dapat dimanfaatkan untuk pembacaan input dengan nilai analog contoh input pada sensor suhu (akuisisi data suhu dengan Mikrokontroler ATMEGA 8535), sensor jarak, sensor ketinggian, dan lain - lain.
ADC 10 bit ini berarti nilai rentang ADC bernilai antara 0 - 1023 , 2 pangkat 10 bit, dengan asumsi tegangan pada ADC antara 0 sampai 5 Volt berarti 0 merepresentasikan nilai ADC 0 dan 5 Volt merepresentasikan nilai ADC 1023, sedangkan tegangan antara 1 - 5 Volt bernilai antara 0 - 1023.
Berikut program pembacaan nilai ADC dengan menggunakan MikroC
sbit LCD_RS at RB4_bit;
sbit LCD_EN at RB5_bit;
sbit LCD_D4 at RB0_bit;
sbit LCD_D5 at RB1_bit;
sbit LCD_D6 at RB2_bit;
sbit LCD_D7 at RB3_bit;
sbit LCD_RS_Direction at TRISB4_bit;
sbit LCD_EN_Direction at TRISB5_bit;
sbit LCD_D4_Direction at TRISB0_bit;
sbit LCD_D5_Direction at TRISB1_bit;
sbit LCD_D6_Direction at TRISB2_bit;
sbit LCD_D7_Direction at TRISB3_bit;
sbit LCD_EN at RB5_bit;
sbit LCD_D4 at RB0_bit;
sbit LCD_D5 at RB1_bit;
sbit LCD_D6 at RB2_bit;
sbit LCD_D7 at RB3_bit;
sbit LCD_RS_Direction at TRISB4_bit;
sbit LCD_EN_Direction at TRISB5_bit;
sbit LCD_D4_Direction at TRISB0_bit;
sbit LCD_D5_Direction at TRISB1_bit;
sbit LCD_D6_Direction at TRISB2_bit;
sbit LCD_D7_Direction at TRISB3_bit;
unsigned int adc;
unsigned char txt[10];
void ADC_Init();
void main() {
ANSEL = 0x04; // Configure AN2 pin as analog
ANSELH = 0; // Configure other AN pins as digital I/O
C1ON_bit = 0; // Disable comparators
C2ON_bit = 0;
ADCON1 = 0x80;
TRISA = 0xFF; // PORTA is input
TRISC = 0; // PORTC is output
TRISD = 0; // PORTD is output
Lcd_Init(); // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_Out(1,1,"Nilai ADC");
do {
adc = ADC_Read(2); // Get 10-bit results of AD conversion
IntToStr (adc, txt); // Ubah Nilai Integer menjadi String
Lcd_Out(2,1,txt);
}
while(1);
}
unsigned char txt[10];
void ADC_Init();
void main() {
ANSEL = 0x04; // Configure AN2 pin as analog
ANSELH = 0; // Configure other AN pins as digital I/O
C1ON_bit = 0; // Disable comparators
C2ON_bit = 0;
ADCON1 = 0x80;
TRISA = 0xFF; // PORTA is input
TRISC = 0; // PORTC is output
TRISD = 0; // PORTD is output
Lcd_Init(); // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_Out(1,1,"Nilai ADC");
do {
adc = ADC_Read(2); // Get 10-bit results of AD conversion
IntToStr (adc, txt); // Ubah Nilai Integer menjadi String
Lcd_Out(2,1,txt);
}
while(1);
}
Berikut hasil simulasinya
Baca juga:
Tidak ada komentar:
Posting Komentar
Silahkan tinggalkan komentar...