Queues sensor specific command to be sent down
Namespace: Monnit.MineAssembly: MonnitMineAPI (in MonnitMineAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public void EnqueueCommand(
uint sensorID,
byte[] commandFrame,
bool isUrgent
) |
Visual Basic |
---|
Public Sub EnqueueCommand (
sensorID As UInteger,
commandFrame As Byte(),
isUrgent As Boolean
) |
Visual C++ |
---|
public:
void EnqueueCommand(
unsigned int sensorID,
array<unsigned char>^ commandFrame,
bool isUrgent
) |
F# |
---|
member EnqueueCommand :
sensorID : uint32 *
commandFrame : byte[] *
isUrgent : bool -> unit
|
Parameters
- sensorID
- Type: System..::..UInt32
Numerical identifier of sensor to send command
- commandFrame
- Type: array<System..::..Byte>[]()[][]
Frame for command as returned by SensorBaseProfile class
- isUrgent
- Type: System..::..Boolean
Will set the urgent flag so that the command is broadcast when received by the gateway
See Also