-
-
Notifications
You must be signed in to change notification settings - Fork 26
ESP32‐S3 AI Smart Speaker Development Board
Phil Schatzmann edited this page Nov 29, 2025
·
10 revisions
BoardName: ESP32S3AISmartSpeaker


- Use any PCF85063A library (e.g. PCF85063A-SOLDERED) and
- setup the pins with Wire.begin(11, 10);
- 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);