Usage
InoDrive(**kwargs)
Main InoDrive API Class.
Arguments: **kwargs (Dict):
• target (String): InoDrive target identifier either through Name, Serial Number, or IPv4 Address.
• autoConnect (Boolean): (Optional) True or False value to automatically have the Module connect.
Returns: Object – An Object that can manage the Module’s File’s, Connection, IO, and Main User Application.
# Import InoDrive API Library import CkInoDriveAPI # Instantiate InoDrive Object and connect by Name Drive = CkInoDriveAPI.InoDrive(target='Name', autoConnect=True) # Instantiate InoDrive Object and connect by Serial Number Drive = CkInoDriveAPI.InoDrive(target='S/N', autoConnect=True) # Instantiate InoDrive Object and connect by IPv4 Address Drive = CkInoDriveAPI.InoDrive(target='192.168.0.1', autoConnect=True)