Skip to content

Commit f8b3aeb

Browse files
Update ssd1306_128x64_i2c.ino
1 parent e767222 commit f8b3aeb

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

examples/ssd1306_128x64_i2c/ssd1306_128x64_i2c.ino

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,22 @@ Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
4040
#define LOGO_HEIGHT 16
4141
#define LOGO_WIDTH 16
4242
static const unsigned char PROGMEM logo_bmp[] =
43-
{ B00000000, B11000000,
44-
B00000001, B11000000,
45-
B00000001, B11000000,
46-
B00000011, B11100000,
47-
B11110011, B11100000,
48-
B11111110, B11111000,
49-
B01111110, B11111111,
50-
B00110011, B10011111,
51-
B00011111, B11111100,
52-
B00001101, B01110000,
53-
B00011011, B10100000,
54-
B00111111, B11100000,
55-
B00111111, B11110000,
56-
B01111100, B11110000,
57-
B01110000, B01110000,
58-
B00000000, B00110000 };
43+
{ 0b00000000, 0b11000000,
44+
0b00000001, 0b11000000,
45+
0b00000001, 0b11000000,
46+
0b00000011, 0b11100000,
47+
0b11110011, 0b11100000,
48+
0b11111110, 0b11111000,
49+
0b01111110, 0b11111111,
50+
0b00110011, 0b10011111,
51+
0b00011111, 0b11111100,
52+
0b00001101, 0b01110000,
53+
0b00011011, 0b10100000,
54+
0b00111111, 0b11100000,
55+
0b00111111, 0b11110000,
56+
0b01111100, 0b11110000,
57+
0b01110000, 0b01110000,
58+
0b00000000, 0b00110000 };
5959

6060
void setup() {
6161
Serial.begin(9600);

0 commit comments

Comments
 (0)