#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_ADDR 0x3C
Adafruit_SSD1306 oled(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);
void setup() {
Serial.begin(9600);
if (!oled.begin(SSD1306_SWITCHCAPVCC,OLED_ADDR)) {
Serial.println(F("failed to start SSD1306 OLED"));
while (1);
}
delay(1000);
oled.clearDisplay();
oled.setTextSize(0.3);
oled.setTextColor(WHITE);
oled.setCursor(0, 1);
}
void loop() {
oled.println("Welcome");
oled.print("This is bluethooth speaker");
delay(10);
}
esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
r1:1
r1:2
chip1:VIN
chip1:GND
chip1:SD
chip1:GAIN
chip1:DIN
chip1:BLCK
chip1:LRC
chip1:+
chip1:-
oled1:GND
oled1:VCC
oled1:SCL
oled1:SDA