This commit is contained in:
2023-08-29 20:06:52 +02:00
parent 7c2eec4446
commit 25702c073a
225 changed files with 1071 additions and 808 deletions

View File

@@ -1,4 +1,4 @@
exports.__esModule = true;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ZoomOSC_ConnectionOnly = void 0;
var node_osc_1 = require("node-osc");
exports.ZoomOSC_ConnectionOnly = {
@@ -18,8 +18,8 @@ exports.ZoomOSC_ConnectionOnly = {
var port = connection.properties.port;
var header = connection.properties.header;
var client = new node_osc_1.Client(ip, port);
client.send("/" + header + "/" + oscAction, [], function () {
status("OSC Action " + oscAction + " has been called", 'info');
client.send("/".concat(header, "/").concat(oscAction), [], function () {
status("OSC Action ".concat(oscAction, " has been called"), 'info');
client.close();
});
}