Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

PART 4 TRAINING DELAY.

Presentasi serupa


Presentasi berjudul: "PART 4 TRAINING DELAY."— Transcript presentasi:

1 PART 4 TRAINING DELAY

2 LED (LIGHT EMITING DIODE)
Untuk LED ANODA : Logika 0 = led menyala Logika 1 = led mati Untuk LED KATODA : Logika 0 = led mati Logika 1 = led menyala Published by. imeldaflorensia91

3 Published by. imeldaflorensia91

4 Published by. imeldaflorensia91

5 DELAY Delay = tunda Penundaan terhadap kinerja mikrokontroler
Published by. imeldaflorensia91

6 DELAY Menghasilkan delay dalam program-C berada pada header delay.h yang harus dimasukan (include) sebelum digunakan. Sebelum memanggil fungsi, interupsi harus dimatikan terlebih dahulu, apabila tidak maka delay akan lebih lama dari yang diharapkan. Juga sangat penting untuk menyebutkan frekuensi clock chip IC AVR yang digunakan pada menu Project – configure - C compiler - Code Generation. Published by. imeldaflorensia91

7 DELAY Header delay #include <delay.h> Perintah delay
delay_ms(------); Waktu tunda dalam milidetik: Misalkan: delay_ms(1000); berarti ditunda selama 1 detik Published by. imeldaflorensia91

8 DELAY Dengan system delay, menciptakan system sinyal pulsa
Published by. imeldaflorensia91

9 New Project Run CodeVision Published by. imeldaflorensia91

10 Published by. imeldaflorensia91

11 Chip select Published by. imeldaflorensia91

12 configuration chip select Chip ATMEGA 8535 Clock 8.000000 Mhz
Published by. imeldaflorensia91

13 Untuk port gunakan PORTC untuk LED PORTC.0 – PORTC.7 = output (0)
Published by. imeldaflorensia91

14 Save and Generate Published by. imeldaflorensia91

15 Save File – make folder and files
Published by. imeldaflorensia91

16 Display Published by. imeldaflorensia91

17 Configuration ready compile
Published by. imeldaflorensia91

18 Published by. imeldaflorensia91

19 CODE PROGRAM Untuk menyalakan led bergantian misalkan pada posisi PORTC.0, PORTC.1 dan PORTC.2 dengan masing-masing waktu tunda selama 1 detik. (jadi waktu keseluruhan yang dibutuhkan sistem yaitu 3 detik) while(1){ PORTC=0b ; Delay_ms(1000); PORTC=0b ; PORTC=0b ; } } Published by. imeldaflorensia91

20 SETTING USB – DOWNLOADER :
INSTALL DEVICE USB DOWNLOADER CONNECT USB DOWNLOADER TO PC/LAPTOP SETTING COM PORT: COMPUTER -> MANAGE -> DEVICE MANAGER PORT (COM &LPT) -> PROLIFIC USB TO SERIAL COMM PORT (COM....) Published by. imeldaflorensia91

21 Configuration PORT Programmer
Published by. imeldaflorensia91

22 AVR Chip programmer type COM PORT BAUD RATE
Choice : AVR Chip programmer type COM PORT BAUD RATE Published by. imeldaflorensia91

23 COMPILER AND BUILD ALL PROGRAM
Or Shift F9 Published by. imeldaflorensia91

24 Connecting USB Downloader - PC/Laptop - Microcontroller, And....
Published by. imeldaflorensia91

25 Process Downloading Published by. imeldaflorensia91

26 FINISH Published by. imeldaflorensia91

27 Error DOWNLOADING Solution : Check COM PORT Check Baud Rate
Check Connection Downloader Check Prog/Serial TTL select Published by. imeldaflorensia91

28 CV AVR WITH PROTEUS OPEN PROGRAM ISIS PROTEUS PROFESSIONAL
Published by. imeldaflorensia91

29 synchronization cv avr with proteus
Creat Project and Design Double click pict microcntroller Published by. imeldaflorensia91

30 synchronization cv avr with proteus
Select clock frequency Select program file, (HEX file type) Published by. imeldaflorensia91

31 synchronization cv avr with proteus
Running ISIS Proteus FINISH... Created by. Dwisnanto Putro, Manado, September 2012 Published by. imeldaflorensia91

32 TASK BUATLAH project dengan system led berjalan pada PORTC.7, PORTC.6 dan PORTC.5 dengan masing-masing delay 250 ms Published by. imeldaflorensia91

33 TASK BUATLAH project dengan system led berjalan pada PORTC.0, PORTC.2, PORTC.4 dan PORTC.6 dengan sistem led menyala secara berurutan bergantian. masing-masing delay 100 ms. Published by. imeldaflorensia91

34 Step 1: hanya PORTC.0 menyala Step 2: hanya PORTC.1 menyala
TASK BUATLAH project dengan system led berjalan pada PORTC.0 s/d PORTC.3. masing-masing delay 150 ms. Misalkan: Step 1: hanya PORTC.0 menyala Step 2: hanya PORTC.1 menyala Step 3: hanya PORTC.2 menyala Step 4: hanya PORTC.3 menyala Published by. imeldaflorensia91

35 TASK BUATLAH project dengan system led berjalan pada PORTC.1 s/d PORTC.6. masing-masing delay 100 ms. Misalkan: Step 1: hanya PORTC.1 mati Step 2: hanya PORTC.2 mati Step 3: hanya PORTC.3 mati Step 4: hanya PORTC.4 mati Step 5: hanya PORTC.5 mati Step 6: hanya PORTC.6 mati (PORTC Yang lain menyala) Published by. imeldaflorensia91

36 TASK BUATLAH project dengan system led berjalan pada PORTC.0 s/d PORTC.7. masing-masing delay 100 ms. (Secara berurutan menyala dari PORTC.0 s/d PORTC.7) Published by. imeldaflorensia91

37 TASK BUATLAH project dengan system led berjalan pada PORTC.0 s/d PORTC.7. masing-masing delay 100 ms. (Secara berurutan menyala dari PORTC.7 s/d PORTC.0) Published by. imeldaflorensia91

38 TASK BUATLAH project dengan system led berjalan pada PORTC.0 s/d PORTC.7. masing-masing delay 100 ms. Misalkan: Step 1: PORTC.0 dan PORTC.7 ON Step 2: PORTC.1 dan PORTC.6 ON Step 3: PORTC.2 dan PORTC.5 ON Step 4: PORTC.3 dan PORTC.4 ON Published by. imeldaflorensia91

39 TASK BUATLAH project dengan system led berjalan pada PORTC.0 s/d PORTC.7. masing-masing delay 100 ms. Misalkan: Step 1: PORTC.0 dan PORTC.7 ON Step 2: PORTC.1 dan PORTC.6 ON Step 3: PORTC.2 dan PORTC.5 ON Step 4: PORTC.3 dan PORTC.4 ON Step 5: PORTC.2 dan PORTC.5 ON Step 6: PORTC.1 dan PORTC.6 ON Step 7: PORTC.0 dan PORTC.7 ON Published by. imeldaflorensia91


Download ppt "PART 4 TRAINING DELAY."

Presentasi serupa


Iklan oleh Google