ESP32 Learn

Introduction to ESP32 & Its Ecosystem

2025-07-01 路 ~1 min read

Summary

ESP32 is a dual鈥慶ore 32鈥慴it MCU by Espressif with WiFi and BLE.

Hardware / Software

  • ESP32鈥慏evKit V1
  • VS Code + PlatformIO or Arduino IDE

Example (Serial hello)

1
2
3
#include <Arduino.h>
void setup() {  Serial.begin(115200);  Serial.println("Hello ESP32!");}
void loop() {}

馃敄 #esp32 #getting-started