mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-23 06:59:59 +01:00
SerialInterface with SimpleList
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
SerialInterface::SerialInterface() {
|
SerialInterface::SerialInterface() {
|
||||||
list = new LinkedList<String>;
|
list = new SimpleList<String>;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SerialInterface::load() {
|
void SerialInterface::load() {
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ extern "C" {
|
|||||||
#include "RGBLed.h"
|
#include "RGBLed.h"
|
||||||
#include "Neopixel.h"
|
#include "Neopixel.h"
|
||||||
#include "A_config.h"
|
#include "A_config.h"
|
||||||
|
#include "SimpleList.h"
|
||||||
|
|
||||||
#ifdef DIGITAL_LED
|
#ifdef DIGITAL_LED
|
||||||
extern DigitalLed led;
|
extern DigitalLed led;
|
||||||
@@ -77,7 +78,7 @@ class SerialInterface {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
bool enabled;
|
bool enabled;
|
||||||
LinkedList<String>* list;
|
SimpleList<String>* list;
|
||||||
bool executing = false;
|
bool executing = false;
|
||||||
bool continuously = false;
|
bool continuously = false;
|
||||||
uint32_t continueTime = 0;
|
uint32_t continueTime = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user