ledstrip_sandbox/main/interpreter_config.h

13 lines
367 B
C
Raw Normal View History

2021-08-28 01:13:01 +00:00
#include "log.h"
2021-09-19 02:13:10 +00:00
#include <string>
2021-08-28 01:13:01 +00:00
using namespace std;
struct InterpreterConfig {
2021-09-19 02:13:10 +00:00
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;
2021-08-28 01:13:01 +00:00
};