惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
博客园 - Franky
罗磊的独立博客
宝玉的分享
宝玉的分享
博客园_首页
腾讯CDC
The GitHub Blog
The GitHub Blog
D
DataBreaches.Net
IT之家
IT之家
D
Docker
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
V
V2EX
月光博客
月光博客
N
Netflix TechBlog - Medium
爱范儿
爱范儿
I
InfoQ
P
Proofpoint News Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Smart Meeting Lamp So My Wife Knows When I'm in...
Arek Mazur · 2026-05-14 · via DEV Community

There are two types of interruptions during remote work:

  • the important ones
  • and the "quick question" that somehow starts exactly when your camera turns on during a meeting

So I decided to build a small smart lamp that sits outside my office and instantly shows whether:

  • my camera is active
  • my microphone is active
  • or I'm free and available

The goal was simple:
before entering the office, my wife can immediately see if I'm:

  • on a call
  • talking to someone
  • recording something
  • or finally available for coffee

And honestly... it turned into a surprisingly fun ESPHome + Home Assistant project.


Final Result

The lamp changes colors automatically based on my MacBook state:

State Color
Camera active Red
Microphone active Orange
Neither active Green

Everything is fully local and integrated with Home Assistant.


Demo Video

Technologies Used

  • ESP32-S3
  • ESPHome
  • Home Assistant
  • WS2812 RGB LED ring
  • Tinkercad
  • Bambu Lab 3D printer

Hardware Components

ESP32-S3 Board

I used a tiny ESP32-S3 development board with:

  • USB-C
  • WiFi
  • Bluetooth
  • native USB support
  • enough power for ESPHome projects

The size is honestly impressive.


WS2812 LED Ring

The LED ring contains 24 individually addressable RGB LEDs.

This means every LED can be controlled independently using a single DATA pin.


Supporting Components

I also used:

  • 470Ω resistor
  • 470µF capacitor
  • prototype PCB
  • female headers

Why the Resistor and Capacitor?

The resistor protects the DATA line from signal spikes.

The capacitor stabilizes the power delivery to the LED ring and prevents random flickering or instability when LEDs suddenly change brightness.

Recommended setup:

  • 470Ω resistor between ESP GPIO and LED DATA
  • 470µF capacitor between 5V and GND

Wiring Diagram

Connections used in the project:

LED Ring ESP32-S3
5V 5V
GND GND
DI GPIO4 through 470Ω resistor

Capacitor:

  • positive -> 5V
  • negative -> GND

Soldering the Hardware

I assembled everything on a small prototype PCB.

The ESP32-S3 is mounted using female headers which makes it removable and easy to replace later.

The LED ring wires are also detachable.

Prototype PCB

Top Side

Bottom Side


Installing ESPHome

I installed ESPHome locally on macOS using pipx.

Install pipx

brew install pipx
pipx ensurepath

Enter fullscreen mode Exit fullscreen mode

Restart terminal after installation.

Install ESPHome

pipx install esphome

Enter fullscreen mode Exit fullscreen mode

Verify installation:

esphome version

Enter fullscreen mode Exit fullscreen mode


Creating the ESPHome Project

Create project directory:

mkdir -p ~/esphome
cd ~/esphome

Enter fullscreen mode Exit fullscreen mode

Create configuration file:

nano led-ring.yaml

Enter fullscreen mode Exit fullscreen mode


ESPHome Configuration

The configuration below creates a WiFi-connected RGB lamp exposed directly to Home Assistant.

esphome:
  name: led-ring
  friendly_name: LED Ring

esp32:
  board: esp32-s3-devkitc-1
  framework:
    type: arduino

wifi:
  ssid: "YOUR_WIFI"
  password: "YOUR_PASSWORD"

logger:

api:

ota:
  platform: esphome

light:
  - platform: esp32_rmt_led_strip
    name: "LED Ring"
    pin: GPIO4
    num_leds: 24
    rgb_order: GRB
    chipset: WS2812

Enter fullscreen mode Exit fullscreen mode


Flashing the Firmware

Connect ESP32-S3 using USB-C and run:

esphome run led-ring.yaml

Enter fullscreen mode Exit fullscreen mode

ESPHome:

  1. compiles firmware
  2. uploads firmware
  3. connects the device to WiFi
  4. exposes it to Home Assistant

Home Assistant Integration

Once connected to WiFi, Home Assistant discovered the device automatically.

The LED ring appeared as:

light.led_ring

Enter fullscreen mode Exit fullscreen mode

And that was enough to control it from automations.


Detecting Camera and Microphone Usage

The Home Assistant macOS companion app exposes sensors like:

binary_sensor.areks_macbook_pro_camera_in_use
binary_sensor.areks_macbook_pro_microphone_in_use

Enter fullscreen mode Exit fullscreen mode

That means Home Assistant knows:

  • when my camera is active
  • when microphone is active
  • and can trigger automations instantly

Automation Logic

The logic is intentionally simple:

Condition Lamp Color
Camera ON Red
Microphone only Orange
Neither Green

This is the automation:

alias: Office Call Lamp - Camera and Microphone Indicator
description: Red when camera is in use, orange when only microphone is in use, green when neither is in use.
mode: restart

trigger:
  - platform: state
    entity_id:
      - binary_sensor.areks_macbook_pro_camera_in_use
      - binary_sensor.areks_macbook_pro_microphone_in_use

action:
  - choose:
      - conditions:
          - condition: state
            entity_id: binary_sensor.areks_macbook_pro_camera_in_use
            state: "on"
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.led_ring
            data:
              rgb_color: [255, 0, 0]
              brightness: 255

      - conditions:
          - condition: state
            entity_id: binary_sensor.areks_macbook_pro_camera_in_use
            state: "off"
          - condition: state
            entity_id: binary_sensor.areks_macbook_pro_microphone_in_use
            state: "on"
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.led_ring
            data:
              rgb_color: [255, 120, 0]
              brightness: 255

    default:
      - service: light.turn_on
        target:
          entity_id: light.led_ring
        data:
          rgb_color: [0, 255, 0]
          brightness: 120

Enter fullscreen mode Exit fullscreen mode


Designing the Enclosure in Tinkercad

Once the electronics worked, I wanted the project to actually look good on the desk instead of resembling a cyberpunk breadboard experiment.

So I designed a simple two-part enclosure in Tinkercad.

The enclosure consists of:

  • top shell with LED ring opening
  • bottom shell holding PCB and ESP32-S3

The design keeps:

  • USB-C accessible
  • LEDs visible
  • electronics hidden
  • assembly simple

Tinkercad Design


3D Printing

The enclosure was printed on a Bambu Lab printer.

Printed Parts

Final Assembly


What I Like About This Project

What started as:

"please don't walk into the office during calls"

ended up becoming:

  • a fun ESPHome project
  • a useful Home Assistant automation
  • a custom hardware build

The best part is how little code is actually needed.

ESPHome handles:

  • firmware
  • networking
  • Home Assistant integration
  • OTA updates

Which means you can focus on the actual idea instead of low-level firmware work.


Final Thoughts

ESPHome + ESP32-S3 is honestly one of the best combinations for DIY smart home projects.

The development experience is fast, modern and surprisingly reliable.

And the result is a genuinely useful device that solves a real everyday problem.

Or at least reduces the probability of:

"Are you on a call right now?"