Files
agent/packages/usb/get-module-state.js

8 lines
200 B
JavaScript
Executable File

#!/usr/bin/env node
const uhk = require('./uhk');
(async function() {
const device = uhk.getUhkDevice();
await uhk.getModuleProperty(device, 1, uhk.modulePropertyIds.protocolVersions);
})();