Matrix for 8x8 LEDs

Click on cells to toggle their state. Then select and copy the code for your C Arduino project.

Binary form
byte img[] = {
B00111100,
B01000010,
B10100101,
B10000001,
B10100101,
B10011001,
B01000010,
B00111100
};
HEX form
byte img[] = {0x3C, 0x42, 0xA5, 0x81, 0xA5, 0x99, 0x42, 0x3C};

Examples

Comments