Files
agent/packages/usb/switch-keymap.js
2018-03-30 18:59:50 +02:00

9 lines
202 B
JavaScript
Executable File

#!/usr/bin/env node
const uhk = require('./uhk');
(async function() {
const device = uhk.getUhkDevice();
const sendData = await uhk.switchKeymap(device, 'TES');
console.log(sendData)
})();