mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-22 07:10:47 -08:00
28 lines
344 B
C++
28 lines
344 B
C++
#pragma once
|
|
|
|
#ifndef flipperLED_h
|
|
#define flipperLED_h
|
|
|
|
#include "configs.h"
|
|
#include "settings.h"
|
|
|
|
#include <Arduino.h>
|
|
|
|
#define B_PIN 4
|
|
#define G_PIN 5
|
|
#define R_PIN 6
|
|
|
|
extern Settings settings_obj;
|
|
|
|
class flipperLED {
|
|
|
|
public:
|
|
void RunSetup();
|
|
void main();
|
|
void attackLED();
|
|
void sniffLED();
|
|
void offLED();
|
|
};
|
|
|
|
#endif
|