neingeist
/
arduinisten
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

27 lines
476 B
Plaintext

// digital pins 2-7 => kathoden 1-6
// analog pins 3-5 => kathoden 7-9
// analog pins 0-2 => anoden A, B, C
void setup() {
// digital pins 2-7
DDRD |= 0b11111100;
// analog pins 0-2 + 3-5
DDRC |= 0b00111111;
// anoden an
PORTC |= 0b00000111;
}
void loop() {
// kathoden auf 1 (leuchtet nicht)
PORTD |= 0b11111100;
PORTC |= 0b00111000;
delay(1000);
// kathoden auf 0 (leuchtet)
PORTD &= 0b00000011;
PORTC &= 0b11000111;
delay(1000);
}