Skip to content

ESP32‐S3 AI Smart Speaker Development Board

Phil Schatzmann edited this page Nov 29, 2025 · 10 revisions

Board

BoardName: ESP32S3AISmartSpeaker

ESP32-S3-AI-Smart-Speaker-Development-Board

Pins

SmartSpeaker

Instructions

RTC

  • Use any PCF85063A library (e.g. PCF85063A-SOLDERED) and
  • setup the pins with Wire.begin(11, 10);

LEDs

  • I recommend to use the Adafruit Neopixel Library
  • Use any example sketch
  • Make sure to use the following parameters to set up the leds:
// Which pin on the Arduino is connected to the NeoPixels?
#define LED_PIN    38

// How many NeoPixels are attached to the Arduino?
#define LED_COUNT 6

// Declare our NeoPixel strip object:
Adafruit_NeoPixel strip(LED_COUNT, LED_PIN, NEO_GRB + NEO_KHZ800);

Clone this wiki locally