arduino-esp32/variants/sensebox_eye/variant.cpp
2025-07-28 06:56:12 +00:00

12 lines
236 B
C++

#include "esp32-hal-gpio.h"
#include "pins_arduino.h"
extern "C" {
void initVariant(void) {
// blink the RGB LED
rgbLedWrite(PIN_LED, 0x00, 0x10, 0x00); // green
delay(20);
rgbLedWrite(PIN_LED, 0x00, 0x00, 0x00); // off
}
}