]> git.defcon.no Git - avrfbosd/blobdiff - testimage.h
Adding some test-files
[avrfbosd] / testimage.h
diff --git a/testimage.h b/testimage.h
new file mode 100644 (file)
index 0000000..00dc78b
--- /dev/null
@@ -0,0 +1,11 @@
+image_widtdh = 23; // pixels
+image_height = 9;  // rows
+
+uint8_t image[] = {
+       0b00001111, 0b00000001, 0b11100000, 0b00100001, 0b00000100, 0b00100000
+       0b10011001, 0b00010011, 0b00100010, 0b01001001, 0b01001001, 0b00101001
+       0b00001001, 0b00100001, 0b00101001, 0b00100101, 0b00100100, 0b10001001
+       0b10010001, 0b00110010, 0b00001000, 0b01000001, 0b00001000, 0b00001111
+       0b00000001, 
+       0b11100000 // Note, last byte padded to fill one byte by adding a 0 at the end..
+};