mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-29 21:22:03 +00:00
8 lines
150 B
C++
8 lines
150 B
C++
#include "variant.h"
|
|
#include "Arduino.h"
|
|
|
|
void earlyInitVariant()
|
|
{
|
|
pinMode(USER_LED, OUTPUT);
|
|
digitalWrite(USER_LED, HIGH ^ LED_STATE_ON);
|
|
} |