Difference between revisions of "U23 2008-2/Gruppe1"
(→LED - Blinken) |
|||
Line 74: | Line 74: | ||
</source> | </source> | ||
+ | ==Sonstiger Code== | ||
+ | === LED - Lauflicht === | ||
+ | : Code: | ||
+ | <source lang ="c"> | ||
+ | //**************************************************************************** | ||
+ | // * | ||
+ | // * Von Gruppe 1 | ||
+ | // * | ||
+ | //**************************************************************************** | ||
+ | |||
+ | #include <avr/io.h> | ||
+ | #include <util/delay.h> | ||
+ | |||
+ | int main(void) | ||
+ | { | ||
+ | unsigned int i; | ||
+ | |||
+ | /* Setze Ports PC4, PD3, PD6 und PD7 als Ausgang */ | ||
+ | DDRC = (1<<DDC4); | ||
+ | DDRD = (1<<DDD7)|(1<<DDD6)|(1<<DDD3); | ||
+ | /* Setze Ports PC4, PD3, PD6 und PD7 auf low */ | ||
+ | PORTC = (0<<PC4); | ||
+ | PORTD = (0<<PD7)|(0<<PD6)|(0<<PD3); | ||
+ | |||
+ | while(1) | ||
+ | { | ||
+ | PORTC ^= _BV(PC4); | ||
+ | for (i=0;i<50;i++) _delay_loop_2(0); | ||
+ | PORTC ^= _BV(PC4); | ||
+ | PORTD ^= _BV(PD3); | ||
+ | for (i=0;i<50;i++) _delay_loop_2(0); | ||
+ | PORTD ^= _BV(PD3); | ||
+ | PORTD ^= _BV(PD6); | ||
+ | for (i=0;i<50;i++) _delay_loop_2(0); | ||
+ | PORTD ^= _BV(PD6); | ||
+ | PORTD ^= _BV(PD7); | ||
+ | for (i=0;i<50;i++) _delay_loop_2(0); | ||
+ | PORTD ^= _BV(PD7); | ||
+ | |||
+ | } | ||
+ | return 0; | ||
+ | } | ||
+ | </source> | ||
+ | |||
[[Category:U23 2008]] | [[Category:U23 2008]] |
Revision as of 18:58, 24 October 2008
Contents
Mitglieder
- Mark
- Christoph
- Hendrik
- ?
Aufgaben
LED - Blinken
- Aufgabe: Eine LED soll zum blinken gebracht werden.
- Code:
<source lang ="c"> //**************************************************************************** // * // * Von Gruppe 1 // * Aufgabe: Eine LED soll zum blinken gebracht werden. // * Lösung: Alle LEDs werden zum blinken gebracht // * //****************************************************************************
- include <avr/io.h>
- include <util/delay.h>
int main(void) { unsigned int i;
/* Setze Ports PC4, PD3, PD6 und PD7 als Ausgang */ DDRC = (1<<DDC4); DDRD = (1<<DDD7)|(1<<DDD6)|(1<<DDD3); /* Setze Ports PC4, PD3, PD6 und PD7 auf high */ PORTC = (1<<PC4); PORTD = (1<<PD7)|(1<<PD6)|(1<<PD3);
while(1) { for (i=0;i<50;i++) _delay_loop_2(0);
PORTC ^= _BV(PC4); PORTD ^= _BV(PD7)|_BV(PD6)|_BV(PD3);
} return 0; }
</source>
LED - Einschalten
- Aufgabe: Eine LED soll zum leuchten gebracht werden.
- Code:
<source lang ="c"> //**************************************************************************** // * // * Von Gruppe 1 // * Aufgabe: Eine LED soll zum leuchten gebracht werden. // * //****************************************************************************
- include <avr/io.h>
int main(void) {
/* PC4 auf Ausgang */ DDRC = &b10000; /* Alternativ Hex: 0xF oder Dezimal: 16 */ /* 7 6 5 4 3 2 1 0 */ /* 0 0 0 1 0 0 0 0 */
/* PC4 einschalten */ PORTD = &b10000;
/* Endlosschleife */ while(1) { }
}
</source>
Sonstiger Code
LED - Lauflicht
- Code:
<source lang ="c"> //**************************************************************************** // * // * Von Gruppe 1 // * //****************************************************************************
- include <avr/io.h>
- include <util/delay.h>
int main(void) { unsigned int i;
/* Setze Ports PC4, PD3, PD6 und PD7 als Ausgang */ DDRC = (1<<DDC4); DDRD = (1<<DDD7)|(1<<DDD6)|(1<<DDD3); /* Setze Ports PC4, PD3, PD6 und PD7 auf low */ PORTC = (0<<PC4); PORTD = (0<<PD7)|(0<<PD6)|(0<<PD3);
while(1) {
PORTC ^= _BV(PC4); for (i=0;i<50;i++) _delay_loop_2(0); PORTC ^= _BV(PC4); PORTD ^= _BV(PD3); for (i=0;i<50;i++) _delay_loop_2(0); PORTD ^= _BV(PD3); PORTD ^= _BV(PD6); for (i=0;i<50;i++) _delay_loop_2(0); PORTD ^= _BV(PD6); PORTD ^= _BV(PD7); for (i=0;i<50;i++) _delay_loop_2(0); PORTD ^= _BV(PD7);
} return 0; } </source>