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