#include uint8_t logo[104] = { 0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,1,1,1,0,0,0,1,1,1,0,0, 0,1,0,0,0,1,0,1,0,0,0,1,0, 1,0,0,0,0,0,1,0,0,1,0,0,1, 1,0,1,1,1,0,1,0,1,1,1,0,1, 1,0,0,0,0,0,1,0,0,1,0,0,1, 0,1,0,0,0,1,0,1,0,0,0,1,0, 0,0,1,1,1,0,0,0,1,1,1,0,0 }; Arduino_LED_Matrix matrix; void setup() { matrix.begin(); // display the image matrix.setGrayscaleBits(1); matrix.draw(logo); } void loop() { }