#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>


Adafruit_SSD1306 display(128, 64, &Wire, -1);

void setup() {
 const uint8_t CustomFontBitmaps[] PROGMEM = {
  0x0,0x0,0x0,0x0,
  0xFC,0x63,0x1F,0x80,
  0x21,0xAA,0xE2,0x3A,0xA6,
  };
 
 
 display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
  display.setTextSize(1);
  display.setTextColor(WHITE);
  display.clearDisplay();
  display.drawBitmap(0, 0, CustomFontBitmaps, 128, 64, WHITE); // Виведення символу Bluetooth на дисплей
  display.display();
}

void loop() {
  // Ваш код
}