@chauvet/connect-base-profiles 2.0.7 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/baseProfiles.js +40 -1
- package/package.json +1 -1
- package/src/baseProfiles.ts +40 -1
package/dist/baseProfiles.js
CHANGED
|
@@ -73,7 +73,46 @@ const baseProfiles = {
|
|
|
73
73
|
'6000': 176,
|
|
74
74
|
'6500': 201,
|
|
75
75
|
},
|
|
76
|
-
autoPrograms:
|
|
76
|
+
autoPrograms: [
|
|
77
|
+
{
|
|
78
|
+
location: 10,
|
|
79
|
+
label: 'Auto Programs',
|
|
80
|
+
values: [
|
|
81
|
+
{
|
|
82
|
+
item: 'Off',
|
|
83
|
+
value: 0,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
item: 'Auto Program 1',
|
|
87
|
+
value: 11,
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
item: 'Auto Program 2',
|
|
91
|
+
value: 61,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
item: 'Auto Program 3',
|
|
95
|
+
value: 111,
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
item: 'Auto Program 4',
|
|
99
|
+
value: 161,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
item: 'Auto Program 5',
|
|
103
|
+
value: 211,
|
|
104
|
+
},
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
location: 11,
|
|
109
|
+
label: 'Auto Speed',
|
|
110
|
+
range: {
|
|
111
|
+
start: 0,
|
|
112
|
+
end: 255
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
],
|
|
77
116
|
name: 'WELL POD 2',
|
|
78
117
|
},
|
|
79
118
|
160: {
|
package/package.json
CHANGED
package/src/baseProfiles.ts
CHANGED
|
@@ -95,7 +95,46 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
95
95
|
'6000': 176,
|
|
96
96
|
'6500': 201,
|
|
97
97
|
},
|
|
98
|
-
autoPrograms:
|
|
98
|
+
autoPrograms: [
|
|
99
|
+
{
|
|
100
|
+
location: 10,
|
|
101
|
+
label: 'Auto Programs',
|
|
102
|
+
values: [
|
|
103
|
+
{
|
|
104
|
+
item: 'Off',
|
|
105
|
+
value: 0,
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
item: 'Auto Program 1',
|
|
109
|
+
value: 11,
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
item: 'Auto Program 2',
|
|
113
|
+
value: 61,
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
item: 'Auto Program 3',
|
|
117
|
+
value: 111,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
item: 'Auto Program 4',
|
|
121
|
+
value: 161,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
item: 'Auto Program 5',
|
|
125
|
+
value: 211,
|
|
126
|
+
},
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
location: 11,
|
|
131
|
+
label: 'Auto Speed',
|
|
132
|
+
range: {
|
|
133
|
+
start: 0,
|
|
134
|
+
end: 255
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
],
|
|
99
138
|
name: 'WELL POD 2',
|
|
100
139
|
},
|
|
101
140
|
160: {
|