]> git.defcon.no Git - avrfbosd/blob - testimage.h
Adding some test-files
[avrfbosd] / testimage.h
1 image_widtdh = 23; // pixels
2 image_height = 9; // rows
3
4 uint8_t image[] = {
5 0b00001111, 0b00000001, 0b11100000, 0b00100001, 0b00000100, 0b00100000
6 0b10011001, 0b00010011, 0b00100010, 0b01001001, 0b01001001, 0b00101001
7 0b00001001, 0b00100001, 0b00101001, 0b00100101, 0b00100100, 0b10001001
8 0b10010001, 0b00110010, 0b00001000, 0b01000001, 0b00001000, 0b00001111
9 0b00000001,
10 0b11100000 // Note, last byte padded to fill one byte by adding a 0 at the end..
11 };