DIO_Tool_For_eBOX640-521
==========================
Board    : MANO521
Target   : Desktop Windows
=====================================
Wrote by : Wychen He
Date     : 2020/04/01

1. Request  : .Net 3.5
2. Support  : x32 and x64
3. Directory:
=============
"BIN"
- Contains demo binary files.

"SRC"
- Contains C# demo source code.

4. AxDIO API:
=============
BOOL __stdcall AxInit()
- Initialize AxDIO library.

BOOL __stdcall AxGetDIODirection(byte *pinData)
- Get DIO current direction.
- 0: Low voltage  (Optput)
- 1: High voltage (Input)

BOOL __stdcall AxSetDIODirection(byte pinData)
- Set DIO direction.
- 0: Low voltage  (Optput)
- 1: High voltage (Input)

BOOL __stdcall AxGetDI(byte *pinData)
- Get DIO current Status.
- 0: Low voltage
- 1: High voltage

BOOL __stdcall AxSetDO(byte pinData)
- Set DO status.
- 0: Low voltage
- 1: High voltage

void __stdcall AxOff()
- Release AxDIO resource.

5. Note:
========
- Please run application as administrator. (AxDIO needs administrator privilege)