-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix_switch_serial.js
156 lines (138 loc) · 4.84 KB
/
matrix_switch_serial.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/********************************************************
Copyright (c) 2022 Cisco and/or its affiliates.
This software is licensed to you under the terms of the Cisco Sample
Code License, Version 1.1 (the "License"). You may obtain a copy of the
License at
https://developer.cisco.com/docs/licenses
All use of the material herein must be in accordance with the terms of
the License. All rights not expressly granted by the License are
reserved. Unless required by applicable law or agreed to separately in
writing, software distributed under the License is distributed on an "AS
IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied.
*********************************************************
* Author: Gerardo Chaves
* Solutions Engineer
* Cisco Systems
*
* This macro controls an HDMI video matrix switcher directly connected to a Webex device via serial RS232 interface.
* It allows the user to switch between different video sources using a custom panel on the touch interface.
*
* It uses the commands as ASCII strings described at the end of this user manual: https://www.mt-viki.net/wp-content/uploads/2023/08/MT-HD4X4-MT-HD0808-MT-HD1616-User-Manual.pdf
* 1All for input 1 to all outputs, 2All for input 2 to all outputs, 3All for input 3 to all outputs
* and 4All for for input 4 to all outputs
*
*
* Released: July 17, 2024
* Updated: June 17, 2024
*
* Version: 1.0.1
*/
import xapi from 'xapi';
const serialBaudRate = 115200
const serialParity = 'None'
const serialPortDescription = 'HDMI Matrix Switcher'
const serialOutboundPort = 1
const custom_panel = `<Extensions>
<Version>1.11</Version>
<Panel>
<Order>4</Order>
<PanelId>panel_hdmi_input_select</PanelId>
<Location>HomeScreen</Location>
<Icon>Laptop</Icon>
<Name>HDMI Input Select</Name>
<ActivityType>Custom</ActivityType>
<Page>
<Name>HDMI Input Select</Name>
<Row>
<Name>HDMI Matrix input</Name>
<Widget>
<WidgetId>widget_hdmi_selector</WidgetId>
<Type>GroupButton</Type>
<Options>size=4</Options>
<ValueSpace>
<Value>
<Key>1</Key>
<Name>1</Name>
</Value>
<Value>
<Key>2</Key>
<Name>2</Name>
</Value>
<Value>
<Key>3</Key>
<Name>3</Name>
</Value>
<Value>
<Key>4</Key>
<Name>4</Name>
</Value>
</ValueSpace>
</Widget>
</Row>
<Options/>
</Page>
</Panel>
</Extensions>`
/**
* Function to delay execution for a number of milliseconds
* @param {integer} ms
* @returns
*/
function delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms))
}
async function testSendText() {
console.log("Starting send serial test")
while (true) {
console.log("Sending Hello there...")
let serial = await xapi.Command.SerialPort.PeripheralControl.Send({ PortId: 1, ResponseTerminator: '** end', ResponseTimeout: '5000', Text: 'Hello there\\n' });
console.log(serial)
await delay(1000)
}
}
/**
* Function to send a command via serial port
* @param {string} command
*/
async function sendSerial(command) {
console.log("Sending this command via serial: " + command)
let serial = await xapi.Command.SerialPort.PeripheralControl.Send({ PortId: serialOutboundPort, ResponseTerminator: '** end', ResponseTimeout: '5000', Text: command });
console.log(serial)
}
async function handleWidgetActions(event) {
let widgetId = event.WidgetId;
if (widgetId == 'widget_hdmi_selector') {
if (event.Type == 'released') switch (event.Value) {
case '1':
console.log('Switching to HDMI 1');
await sendSerial('1All.\\n')
break;
case '2':
console.log('Switching to HDMI 2');
await sendSerial('2All.\\n')
break;
case '3':
console.log('Switching to HDMI 3');
await sendSerial('3All.\\n')
break;
case '4':
console.log('Switching to HDMI 4');
await sendSerial('4All.\\n')
break
}
}
}
async function main() {
xapi.Config.SerialPort.Mode.set("On");
xapi.Config.SerialPort.Outbound.Mode.set("On");
xapi.Config.SerialPort.Outbound.Port[serialOutboundPort].BaudRate.set(serialBaudRate);
xapi.Config.SerialPort.Outbound.Port[serialOutboundPort].Parity.set(serialParity);
xapi.Config.SerialPort.Outbound.Port[serialOutboundPort].Description.set(serialPortDescription);
// create the custom panel
xapi.Command.UserInterface.Extensions.Panel.Save({ PanelId: 'panel_hdmi_input_select' }, custom_panel);
// register the custom panel events
xapi.Event.UserInterface.Extensions.Widget.Action.on(event => handleWidgetActions(event));
}
main()
// testSendText()