I would like to use USB Input in a BrightScript Custom PlugIn.
I can handle GPIO, UDP, aso. but can not find any examples or documentation to USB.
What event type is it? What kind of data will be received (Str, int, float)
function USBin_ProcessEvent(event as Object)
'handle USB Inputs
if type(event)= "?????" then
eventData = event.Get?????()
endif
return false
end function