ESP32 Learn

Arduino Core vs ESP-IDF: When to Switch

2025-09-18 路 ~1 min read
Table of contents
1
2
3
4
5
6
7
// Example: call ESP-IDF API inside Arduino
#include "esp_system.h"

void setup() {
  printf("Chip rev: %d\n", esp_get_chip_revision());
}
void loop() {}

馃敄 #esp-idf #arduino-core