Static Speed Controller
Sets the speed to a constant value.
Format
{
"Type": "StaticSpeedController",
"Config": {
"Speed": <int>,
"Trigger": <Trigger>
}
}
Variables
Speed
Constant speed value from 0
to 100
in percent.
Note: To stop the device set the value to 0
.
Note: Any value beetween 1
and 19
will be forced to 20
as this is the minimum operating speed.
Required: No
Default value:
50
Example:
"Speed": 75
Trigger
Instance of a Trigger plugin.
Required: Yes
Default value:
Example:
"Trigger": {
"Type": "AlwaysTrigger"
}
Example
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 75
}
}