|
1 | 1 | /* --------------------------------------------------------------------------------------------------------------------------------- |
2 | | - * User plugins for OnStepX |
| 2 | + * User plugins for the SmartHandController (OnStep) project. |
3 | 3 | * |
4 | 4 | * For each entery below one must specify the class instance name and #include the class header file. |
5 | 5 | * |
6 | 6 | * Each plugin should have a directory that contains all of its files, which gets dropped into to the /src/plugins directory. |
7 | 7 | * The plugin main class instance name should match the directory name. |
8 | | - * The plugin main class must have a "void init();" method for OnStepX to call when it starts up. |
| 8 | + * The plugin main class must have a "void init();" method for the SmartHandController to call when it starts up. |
9 | 9 | * |
10 | 10 | * --------------------------------------------------------------------------------------------------------------------------------- |
11 | 11 | */ |
12 | 12 |
|
13 | 13 | // ================================================================================================================================= |
14 | 14 |
|
| 15 | +#define PLUGIN1 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
| 16 | +//#include "plugin1/Name.h" // Specify the header file to include the class. |
| 17 | + |
15 | 18 | // *** Comment out PLUGIN1 above AND uncomment the following two lines to enable the sample plugin *** |
16 | 19 | //#define PLUGIN1 sample // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
17 | 20 | //#include "sample/Sample.h" // Specify the header file to include the class. |
18 | 21 |
|
19 | | -#define PLUGIN1 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
20 | | -//#include "website/Website.h" // Specify the header file to include the class. |
21 | | -#define PLUGIN1_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
22 | | - |
23 | 22 | #define PLUGIN2 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
24 | | -//#include "power/Power.h" // Specify the header file to include the class. |
25 | | -#define PLUGIN2_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
| 23 | +//#include "plugin2/Name.h" // Specify the header file to include the class. |
26 | 24 |
|
27 | 25 | #define PLUGIN3 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
28 | 26 | //#include "plugin3/Name.h" // Specify the header file to include the class. |
29 | | -#define PLUGIN3_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
30 | 27 |
|
31 | 28 | #define PLUGIN4 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
32 | 29 | //#include "plugin4/Name.h" // Specify the header file to include the class. |
33 | | -#define PLUGIN4_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
34 | 30 |
|
35 | 31 | #define PLUGIN5 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
36 | 32 | //#include "plugin5/Name.h" // Specify the header file to include the class. |
37 | | -#define PLUGIN5_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
38 | 33 |
|
39 | 34 | #define PLUGIN6 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
40 | 35 | //#include "plugin6/Name.h" // Specify the header file to include the class. |
41 | | -#define PLUGIN6_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
42 | 36 |
|
43 | 37 | #define PLUGIN7 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
44 | 38 | //#include "plugin7/Name.h" // Specify the header file to include the class. |
45 | | -#define PLUGIN7_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
46 | 39 |
|
47 | 40 | #define PLUGIN8 OFF // OFF, Specify the class instance (same as plugin directory name) to enable. Option |
48 | 41 | //#include "plugin8/Name.h" // Specify the header file to include the class. |
49 | | -#define PLUGIN8_COMMAND_PROCESSING OFF // OFF, Set to ON for plugins that allow command processing |
0 commit comments