mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-05 20:40:25 -08:00
25 lines
349 B
C++
25 lines
349 B
C++
#pragma once
|
|
|
|
#ifndef xiaoLED_H
|
|
#define xiaoLED_H
|
|
|
|
#include "configs.h"
|
|
#include "settings.h"
|
|
|
|
#include <Arduino.h>
|
|
|
|
#define XIAO_LED_PIN 21
|
|
|
|
extern Settings settings_obj;
|
|
|
|
class xiaoLED {
|
|
|
|
public:
|
|
void RunSetup();
|
|
void main();
|
|
void attackLED();
|
|
void sniffLED();
|
|
void offLED();
|
|
};
|
|
|
|
#endif /* xiaoLED_H */ |