Users Guide

This method is used for reading the value of a pin. Value can be either High (1) or Low (0).
Dell Command | Monitor CIM Commands are:
To read value of GPI4 on Embedded Box PC 5000, run the following command:
Invoke-CimMethod -Namespace root\dcim\sysman -ClassName DCIM_GPIOService -MethodName ReadPin -
Arguments @{PinIndex=4}
To read value of P15 on Embedded Box PC 3000, run the following command:
Invoke-CimMethod -Namespace root\dcim\sysman -ClassName DCIM_GPIOService -MethodName ReadPin -
Arguments @{Port=1; PinIndex=5}
Command Output:
ComputerName: <Computer Name>
Model: <Model Name>
ReturnValue: 0
SetResult: 0
Tag: <Service Tag>
Value: 1
PSComputerName:
WritePin
This method is used for writing the value of a pin. Value can be either High (1) or Low (0).
Dell Command | Monitor CIM Commands are:
To write value of GPO3 as High on Embedded Box PC 5000, run the following command:
Invoke-CimMethod -Namespace root\dcim\sysman -ClassName DCIM_GPIOService -MethodName WritePin
-Arguments @{PinIndex=3; Value=1}
To Write value of P
04
as Low on Embedded Box PC 3000, run the following command:
Invoke-CimMethod -Namespace root\dcim\sysman -ClassName DCIM_GPIOService -MethodName ReadPin -
Arguments @{Port=0; PinIndex=4; Value=0}
Command Output:
ComputerName: <Computer Name>
Model: <Model Name>
ReturnValue: 0
SetResult: 0
Tag: <Service Tag>
Value: 1
PSComputerName:
20
Using Dell Command | Monitor 10.1.0