Skip to content
No results
  • Home
  • Tutorials
    • Getting Started
    • Home Assistant Integration
    • Troubleshooting & Tips
  • Projects
    • Smart Home
    • Vehicle & Engine Simulators
    • Automation & Control
    • Data Logging & Cloud
    • Environment & Weather
  • Reviews
    • ESP32 Boards & Modules
    • Sensors & Components
    • Tools & Accessories
  • Contact
  • About
  • Code Snippets
  • Schematics
  • Downloads
  • Links
Esp32.co.uk
  • Home
  • Tutorials
    • Getting Started
    • Home Assistant Integration
    • Troubleshooting & Tips
  • Projects
    • Smart Home
    • Vehicle & Engine Simulators
    • Automation & Control
    • Data Logging & Cloud
    • Environment & Weather
  • Reviews
    • ESP32 Boards & Modules
    • Sensors & Components
    • Tools & Accessories
  • Contact
  • About
  • Code Snippets
  • Schematics
  • Downloads
  • Links
Esp32.co.uk
  • ESP32 Boards & Modules

Full comparison ESP32-S3 vs ESP32-S2 – Which One Should You Use? (2026)

Both ESP32-S2 and ESP32-S3 are “second-wave” ESP32 chips: they add native USB and more modern security features compared to the original ESP32. But they target slightly different use cases: If you’re deciding what to base a new board or project…

  • panakos
  • 21 December 2025
  • ESP32 Boards & Modules

ESP32 vs ESP32-S3 – Which One Should You Choose in 2026?

Espressif’s ESP32 family has exploded with variants, but for most makers and IoT projects the real question is simple: Should I use the classic ESP32, or the newer ESP32-S3? Both chips are dual-core Wi-Fi + Bluetooth SoCs, both are cheap,…

  • panakos
  • 21 December 2025
  • Sensors & Components

PCF8575 I2C 16-Bit GPIO Expander: ESP32/Arduino Wiring + Tested Code

Understanding the Adafruit_PCF8575 Button Example Microcontrollers never seem to have enough pins. That’s where the PCF8575 comes in: a simple I²C 16-bit GPIO expander that gives you 16 extra digital pins using only 2 wires (SDA/SCL). The Adafruit example you…

  • panakos
  • 19 December 2025
  • Sensors & Components

BME280 with Arduino / ESP32 – Complete Beginner’s Guide (Using Adafruit Library Example)

The BME280 is a tiny environmental sensor that measures: From pressure, you can also estimate altitude, which is exactly what the Adafruit example you posted does. In this guide we’ll: 1. What is the BME280? The Bosch BME280 is a…

  • panakos
  • 19 December 2025
  • Sensors & Components

ESP32 ADS1115 Tutorial: I2C Wiring, Gain Settings, and Voltage Reading ADC

Understanding the Adafruit ADS1X15 Example The ADS1115 (16-bit) and ADS1015 (12-bit) are very popular external ADC chips. They talk over I²C, give you 4 analog inputs, and include a programmable gain amplifier (PGA) so you can measure both tiny and…

  • panakos
  • 19 December 2025
  • Home Assistant Integration

ESP32 Air Quality Station: CO₂ + VOC + PM2.5 with Home Assistant (SCD41/SCD30 + SGP40 + SDS011)

If you want one “single source of truth” for indoor air quality, the most useful combo is: With an ESP32 you can build a compact air quality station that reports to Home Assistant and gives you: This guide shows wiring…

  • panakos
  • 19 December 2025
  • Home Assistant Integration

ESP32 LoRa Remote Sensor Node for Home Assistant (Garden / Well / Shed)

Wi-Fi is great indoors, but it often fails for: LoRa solves this problem: it’s long-range, low-power, and ideal for small sensor payloads. This architecture works extremely well with Home Assistant: LoRa sensor node (remote) → LoRa gateway (near Wi-Fi) →…

  • panakos
  • 19 December 2025
  • Home Assistant Integration

ESP32 Modbus / RS-485 Gateway for Energy Meters & Heat Pumps (MAX485 → Home Assistant)

A huge amount of serious home energy hardware speaks Modbus RTU over RS-485: With one ESP32 and a cheap MAX485 (RS-485) transceiver, you can build a gateway that: This guide covers: 1. Modbus RTU & RS-485 in 2 minutes 2.…

  • panakos
  • 19 December 2025
  • Home Assistant Integration

ESP32 Laundry Machine “Cycle Finished” Detector using Power Monitoring (PZEM / Smart Plug → Home Assistant)

If you’ve ever forgotten wet laundry in the washing machine for 3 hours, you already understand the value of this automation. Laundry machines and dryers have a very distinct power signature: By monitoring power, Home Assistant can reliably detect: This…

  • panakos
  • 19 December 2025
  • Home Assistant Integration

ESP32 Smart Doorbell with Home Assistant (Chime + Notifications + Snapshot)

A classic doorbell can be upgraded into a smart doorbell with just: With Home Assistant you can: This guide covers: 1. Hardware Overview Base setup (no camera): Optional add-on: ⚠️ If your doorbell is powered by mains voltage, only work…

  • panakos
  • 19 December 2025
  • Home Assistant Integration

ESP32 Garage Door / Gate Controller with Position Feedback (Reed Switch + Relay)

A lot of garage doors and sliding gates already have a simple “push-button” input that: With an ESP32, a small relay, and a reed switch you can turn that into a fully integrated Home Assistant device: This guide focuses on:…

  • panakos
  • 19 December 2025
  • ESP32 Boards & Modules

ESP32-P4-EYE Pinout & GPIO Reference(Camera, LCD, I/O Header)

The ESP32-P4-EYE is one of Espressif’s newest dev kits: a tiny “camera-in-a-box” based on the ESP32-P4 SoC, with a built-in LCD, 2 MP camera, microphone, MicroSD and dual USB-C ports. It’s designed as a ready-made platform for AI vision and…

  • panakos
  • 14 December 2025
  • Home Assistant Integration

ESP32 RGB/RGBW LED Strip Controller with Home Assistant (ESPHome & WLED Comparison)

12V LED strips (RGB or RGBW) are one of the easiest ways to add smart lighting to a room – behind the TV, under cabinets, around the bed, or as indirect ceiling lighting. With an ESP32, a few MOSFETs, and…

  • panakos
  • 14 December 2025
  • Home Assistant Integration

ESP32 IR Blaster for TV & AC Control with Home Assistant (ESPHome & MQTT)

An ESP32 with an IR LED and a small IR receiver can replace multiple remotes: This guide shows how to: 1. Hardware Required Important: Don’t drive an IR LED directly from an ESP32 GPIO at full current – always use…

  • panakos
  • 14 December 2025
  • Home Assistant Integration

ESP32 Smart Thermostat DS18B20/SHT45 with Home Assistant (Relay + Temperature + Schedule)

A simple boiler or electric heater can behave like a full smart thermostat using: This guide shows how to build a room or boiler thermostat with: Both DS18B20 (wired, accurate, great for pipes/tanks) and SHT45 (room temp/humidity) are covered. 1.…

  • panakos
  • 14 December 2025
Prev
1 2 3 4 5 6
Next

Trending now

Denon & Marantz AVR in Home Assistant: Setup, Control, and Automations (2026)
How to Send ESP32 Sensor Data to Home Assistant via MQTT (2026)
How to Connect an ESP32 + BME280 Sensor to Home Assistant (via MQTT)
Full Comparison of All ESP32-C6 Versions and Development Boards (2026 Guide)
Copyright © 2026 - WordPress Theme by CreativeThemes