Pada kesempatan kali ini akan dibahas mengenai bagaimana cara mengakses IC 74LS47 yang merupakan IC untuk mengendalikan 7segment, kenapa harus pakai IC ini ? karena untuk mempermudah dalam mengakses 7segment, jika tidak menggunakan IC ini maka diperlukan 8 port mikrokontroller untuk mengaksesnya, namun jika menggunakan IC ini akan lebih simple dengan hanya menggunakan 4 buah port mikrokontroller. berikut penjelasan gambarnya
PROGRAN BASCOM AVR
$regfile = "m16def.dat"
$crystal = 12000000
Config Lcdpin = Pin , Rs = Portc.0 , E = Portc.1 , Db4 = Portc.2
Config Lcdpin = Pin , Db5 = Portc.3 , Db6 = Portc.4 , Db7 = Portc.5
Config Lcd = 16 * 2
Config Adc = Single , Prescaler = Auto , Reference = Avcc
Ddrd = &B11111111
Do
Portd = &B00000000
Wait 1
Portd = &B00000001
Wait 1
Portd = &B00000010
Wait 1
Portd = &B00000011
Wait 1
Portd = &B00000100
Wait 1
Portd = &B00000101
Wait 1
Portd = &B00000110
Wait 1
Portd = &B00000111
Wait 1
Portd = &B00001000
Wait 1
Portd = &B00001001
Wait 1
Loop
$crystal = 12000000
Config Lcdpin = Pin , Rs = Portc.0 , E = Portc.1 , Db4 = Portc.2
Config Lcdpin = Pin , Db5 = Portc.3 , Db6 = Portc.4 , Db7 = Portc.5
Config Lcd = 16 * 2
Config Adc = Single , Prescaler = Auto , Reference = Avcc
Ddrd = &B11111111
Do
Portd = &B00000000
Wait 1
Portd = &B00000001
Wait 1
Portd = &B00000010
Wait 1
Portd = &B00000011
Wait 1
Portd = &B00000100
Wait 1
Portd = &B00000101
Wait 1
Portd = &B00000110
Wait 1
Portd = &B00000111
Wait 1
Portd = &B00001000
Wait 1
Portd = &B00001001
Wait 1
Loop
No comments:
Post a Comment