Загрузить исходник main.c

#include <avr/io.h>
#include <avr/pgmspace.h>
#include <util/delay.h>
#include "n3310.h"
 
 
const byte out[2][24] = {
        {0x0, 0x0, 0x0, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0, 0xc, 0x6, 0x86, 0xc6, 0xec, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
        {0x0, 0x0, 0x0, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x0, 0x18, 0x10, 0x10, 0x10, 0x19, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0}
};
 
int main(void) {
 
    LcdInit();
 
    while (1) {
        LcdClear();
        LCDIcon(&out[0][0], 0, 0, 2, 24, false);
        LcdUpdate();
        _delay_ms(5000);
    }
 
}