Close

Step 2: Software

A project log for Sound-activated Counting Light

This is a guide for new of esp32 and arduino, in this article, I will share how to make a sound-activated counting light.

makerfabsMakerfabs 01/20/2024 at 08:070 Comments

This is a library for our Monochrome OLEDs based on SSD1306 drivers.

#include <Adafruit_SSD1306.h>

This library allows you to communicate with I2C devices (the OLED is connected by I2C) 

#include <Wire.h>

The Adafruit_GFX library provides a common syntax and set of graphics functions for all of our LCD and OLED displays and LED matrices. 

#include <Adafruit_GFX.h>

Arduino library for controlling single-wire-based LED pixels and strip. 

#include <Adafruit_NeoPixel.h>

 The raw code .

Discussions