@parallaxcontrol/node-red-control
Version:
A comprehensive package of Node-RED nodes designed to seamlessly integrate with the Parallax Control Engine, offering enhanced control capabilities for AV Automation.
46 lines (39 loc) • 1.57 kB
HTML
<script type="text/javascript">
RED.nodes.registerType('biamp-tesira-command', {
category: 'parallax-tesira',
color: '#C0C0C0',
defaults: {
name: { value: "" },
},
inputs: 1,
outputs: 1,
icon: "font-awesome/fa-terminal",
label: function() {
return this.name || "biamp-tesira-command";
},
labelStyle: function() {
return this.name ? "node_label_italic" : "";
}
});
</script>
<script type="text/html" data-template-name="biamp-tesira-command">
<!-- Name -->
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div>
<small>
<p>Inject your command. Reference the Tesira Command String Calculator: </p>
<p>https://support.biamp.com/Tesira/Control/Tesira_command_string_calculator</p>
<p>Expects: msg.payload of type String.</p>
<p>Response: standard TTP responses. i.e.: +OK "value":"4.1.0.36"</p>
<p>https://tesira-help.biamp.com/System_Control/Tesira_Text_Protocol/REsponses.htm</p>
</small>
</div>
</script>
<script type="text/html" data-help-name="biamp-tesira-command">
<p>Inject your command using the Tesira Command String Calculator </p>
<p>https://support.biamp.com/Tesira/Control/Tesira_command_string_calculator</p>
<p>Expects: msg.payload of type String.</p>
</script>