Skip to main content

PERCOBAAN 1


ON - OFF LED

1. Prosedur Kerja [back]

  1. Pastikan semua supply dalam keadaan off
  2. Hubungkan jumper seperti gambar dibawah
  3. Buatlah listing program yang telah ada pada modul.
  4. Hidupkan supply pada modul
  5. Upload program pada rangkaian
  6. Tekan tombol Reset
  7. Amati percobaan, jika tidak sesuai perbaiki rangkaian atau program
  8. Jika sesuai, maka selesai dan demokan pada instruktur atau asisten yang mengawas
  9. Matikan supply pada modul

2. Hardware [back]

3. Video Praktikum [back]

4. Rangkaian Simulasi [back]

5. Flowchart [back]


6. Listing Program [back]

#include<mega128.h>
# include <delay.h>
void main(void)
{
PORTE=0x00;
DDRE=0x00;
PORTC=0x00;
DDRC=0xff;
while(1)
{
if (PINE.1 == 1)
{
PORTC=0x0f;
delay_ms(100);
}
else
{
PORTC=0x00;
}
if (PINE.2==1)
{
PORTC=0xf0;
delay_ms(100);
}
else
{
PORTC=0x00;
delay_ms(100);
} } }

7. Link Download [back]

Comments

Popular posts from this blog

COVER

KULIAH DAN PRAKTIKUM Dibuat dan Dipublikasikan untuk Memenuhi Tugas Kuliah Elektronika dan Sistem Digital Mikroprosessor dan Mikrokontroller By: Adelina Utari 1610952030 Dosen Pembimbing : Darwison, M.T TEKNIK ELEKTRO FAKULTAS TEKNIK PADANG 2018 Referensi: Hall, D. V., “Microprocessors and Interfacing: Programming and Hardware”, McGraw-Hill, Inc., New York Darwison, 2010, Teknik Interface: Perancangan Hardware dan simulasi Software serta Aplikasinya”, Unand Press, Padang. Darwison, 2009, “Panduan Praktikum Elektronika Digital”, Teknik Elektro – Unand, Padang. Darwison, 2009, “Diktat Mikroprosesor”, Teknik Elektro – Unand, Padang Gaonkar, S., 1988, “Microprocessors, Architecture, Programming, and Interfacing”, Jhon Wiley and Sons. Rachmad Setiawan, 2006, “Teknik Interface”, Graha Ilmu, Yogyakarta. John Crisp, Introduction to Microprocessors and Microcontrollers, 2nd edition, Newness, 2004. Darwis...