forked from DanielOgorchock/ST_Anything
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExecutor.cpp
More file actions
53 lines (39 loc) · 1.08 KB
/
Executor.cpp
File metadata and controls
53 lines (39 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//******************************************************************************************
// File: Executor.cpp
// Authors: Dan G Ogorchock & Daniel J Ogorchock (Father and Son)
//
// Summary: st::Executor is a generic class which inherits from st::Device. This is the
// parent class for the st::EX_Switch class.
// In general, this file should not need to be modified.
//
// Change History:
//
// Date Who What
// ---- --- ----
// 2015-01-03 Dan & Daniel Original Creation
//
//
//******************************************************************************************
#include "Executor.h"
#include "Constants.h"
#include "Everything.h"
namespace
st
{
//private
//public
//constructor
Executor::Executor(const __FlashStringHelper *name):
Device(name)
{
}
//destructor
Executor::~Executor()
{
}
void Executor::init()
{
}
//debug flag to determine if debug print statements are executed (set value in your sketch)
bool Executor::debug=false;
}