User's Manual

Morphocheck Terminal - Developer’s Guide
DPD A00358-A03
Page 9 / 15
WorkAboutPRO .Net Wrapper sample code:
using PsionTeklogix.WorkAboutPro;
public class DeviceInterface
{
public static void PowerOn()
{
WorkAboutPro WAP = new WorkAboutPro();
// Set pin 70 to false for proper use
WAP.GPIO_SetPIN70State(false);
// Set pin 72 to false to enable power
WAP.GPIO_SetPIN72State(false);
}
}
Power OFF
Set the output pin 72 to true, switches OFF the interface board power.
IMPORTANT NOTICE : Pin 70 must be set to false before switching off the interface board
power. Power overconsumption and a pin 70 damage may occur if not applied.
WorkAboutPRO .Net Wrapper sample code:
using PsionTeklogix.WorkAboutPro;
public class DeviceInterface
{
public static void PowerOff()
{
WorkAboutPro WAP = new WorkAboutPro();
// Set pin 70 to false for proper use
WAP.GPIO_SetPIN70State(false);
// Set pin 72 to false to disable power
WAP.GPIO_SetPIN72State(true);
}
}