1 / 7

TEP Příklady v jazyce C

TEP Příklady v jazyce C. č.19. TEP. Téma Příklady v jazyce C Předmět TEP Autor Juránek Leoš Ing. Blikání v C. #include < avr / io.h > #include < avr / delay.h > int main( void ) { const int casms =100; // Port B pin 3 jako výstup DDRB = 1<<DDB3; // Nastaveni vystupu do L

iona
Download Presentation

TEP Příklady v jazyce C

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. TEPPříklady v jazyce C č.19

  2. TEP TémaPříklady v jazyce C PředmětTEP AutorJuránek Leoš Ing.

  3. Blikání v C #include<avr/io.h> #include<avr/delay.h> intmain(void) { constintcasms=100; // Port B pin 3 jako výstup DDRB=1<<DDB3; // Nastaveni vystupu do L PORTB=0; while(1) { // Negace vystupu PORTB^=1<<PB3; _delay_ms(casms); } }

  4. Pole uložené v paměti dat #include<avr/io.h> chardekoduj(charindex) { charpole[4]={0b01111111,0b10111111,0b11011111,0b11101111}; returnpole[index]; } //************* intmain(void) { chari=0; DDRC=0B11110000; while(1) { PORTC=dekoduj(i); i++; if(i>3) { i=0; } } }

  5. Pole uložené v paměti programu #defineF_CPU20000000 #include<avr/io.h> #include<avr/pgmspace.h> #include<avr/delay.h> constunsignedcharpole[4]PROGMEM={ 0b01111111, 0b10111111, 0b11011111, 0b11101111 }; unsignedcharstisk=0; unsignedcharsmer=1; unsignedchardekoduj(unsignedcharindex) { returnpgm_read_byte(&pole[index]); }

  6. voidcti_a_cekej() { unsignedchari; unsignedchartlacitko; for(i=0;i<=9;i++) { //_delay_ms(50); tlacitko=!(PINC&0b00000001); if(!stisk&&tlacitko) { stisk=1; smer=!smer; } elseif(stisk&&!tlacitko) { stisk=0; } } }

  7. intmain(void) { unsignedchari; DDRC=0b11110000; PORTC=0b11110001; while(1){ if(smer==1){ if(i==3){i=0;} else{i++;} } else{ if(i==0){i=3;} else{i--;} } PORTC=dekoduj(i); cti_a_cekej(); } }

More Related