W
WOWCube Docs
Filters
vSDK
Navigation
infoWOWConnect_BluetoothWOWConnect_EnumsWOWConnect_UPNPDeviceInformationWOWConnect_WOWCubeDevice
changelogindex
Made byMcKay Seamons
GitHub

Cubios.WOWConnect.WOWCubeDevice


Public Methods


Open

Summary

Opens a WOWCube device for connection

Arguments

  • cubeappUUID - UUID string identifier of the cubeapp to communicate with

Output

Returns true upon successfull opening of the device, false otherwise.

Synopsis

WOWConnect_WOWCubeDevice
1async Task<bool> Open(string cubeappUUID)
2

Close

Summary

Closes the device and frees resources

Synopsis

WOWConnect_WOWCubeDevice
1void Close()
2

Write

Summary

Writes an array of bytes to the opened device

Arguments

  • data - byte array to send

Output

Returns true if the data was successfully sent to the device, false otherwise.

Synopsis

WOWConnect_WOWCubeDevice
1async Task<bool> Write(byte[] data)
2