In the Preferences window, find the "Additional Board Manager URLs" field, and add the following URL:
https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json
If there are other URLs already there, just separate them with a comma.
Click “OK” to save your changes.
ESP32
.After installation, you will have support for the ESP32-C6 development board.
Configure the board settings (e.g., port and upload rate) according to the needs of your project. These settings can be adjusted in the Tools menu.
Now that your Arduino IDE is set up for ESP32-C6 development, you can begin your project development.
#define LED_PIN 7
void setup() {
pinMode(LED_PIN , OUTPUT);
digitalWrite(LED_PIN, HIGH);
}
void loop() {
}
Upload the code to see the blue led light on the M5NanoC6 device