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