ledstrip_sandbox/main/interpreter_config.h
2021-09-19 04:13:10 +02:00

13 lines
367 B
C++

#include "log.h"
#include <string>
using namespace std;
struct InterpreterConfig {
unsigned int begin;
unsigned int length;
bool enabled;
std::string scriptkey; // To change the script in this part of the interpreter
// and get logger output
std::string persistkey; // To persist the current running script to disk
Log logger;
};