mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-12 15:50:36 -08:00
20 lines
238 B
C++
20 lines
238 B
C++
#ifndef flipperLED_h
|
|
#define flipperLED_h
|
|
|
|
#include <Arduino.h>
|
|
|
|
#define B_PIN 4
|
|
#define G_PIN 5
|
|
#define R_PIN 6
|
|
|
|
class flipperLED {
|
|
|
|
public:
|
|
void RunSetup();
|
|
void attackLED();
|
|
void sniffLED();
|
|
void offLED();
|
|
};
|
|
|
|
#endif
|