#include int main(void) { unsigned char message[] = "The Earth is but One Country"; unsigned char z ; DDRB = 0xFF; DDRC = DDRC | 0b00100000 ; for ( z = 0; z < 28; z++) { PORTB = message[z]; PORTC = PORTC | 0b00100000; PORTC = PORTC & 0b11011111; } while (1); return 0; }