Profile

Kiran Adhikari

Contact Details

My Content

1 to 5 of 5 total
Posted By Kiran Adhikari 06-01-2026 11:45
Found In Egroup: Facility Control
\ view thread
Hi Simon, Yes, once you have the command set up on the device, it can be invoked from the custom panel using: params.executeCommand(CMD_NAME, ARGS, CALLBACK); For example, if I had a add_device command, it can be called from the panel like this: params.executeCommand("cmds.add_device", ("connection_settings": ...
Posted By Kiran Adhikari 05-29-2026 13:15
Found In Egroup: Facility Control
\ view thread
Hi Simon, You'll want to expose this as an OGP command on the device, rather than as a function in the CustomPanel. In the device resource declaration, add a command such as matrixRoute with src and dst as arguments, typically using a STRUCT value. Once the device is added as a data source in DashBoard, ...
Posted By Kiran Adhikari 09-15-2025 13:09
Found In Egroup: Facility Control
\ view thread
Hi Bob, Here is an ogScript example that displays the HScore value from an XML file as a label. When the XML changes, pressing the 'read' button will update the HScore label. var file = params.getValue("filename", 0); var xml = ogscript.parseXML(file); var nodes = ...
Posted By Kiran Adhikari 07-08-2025 15:36
Found In Egroup: Facility Control
\ view thread
Hi Alan, Yes, there's a straightforward way to do this. You can save your desired layout and then use the -layout LAYOUT_NAME command-line option to load it at startup. You can do this by adding that option to shortcuts. That should open the soft panel when DashBoard starts. ------------------------------ ...
Posted By Kiran Adhikari 07-08-2025 15:29
Found In Egroup: Facility Control
\ view thread
.