9 lines
202 B
JavaScript
Executable File
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)
|
|
})();
|