Files
Undecked/Backend/dist/Integrations/buildin/pjlink/integration.js
2023-08-29 19:55:48 +02:00

34 lines
1.0 KiB
JavaScript

exports.__esModule = true;
module.exports = {
name: "PJLink",
description: "PJLink is a unified standard for operating and controlling data projectors.",
main: require("./main"),
connections: [
{
type: "pjlink",
name: "Projector",
message: 'Make you PJLink is enabled on your projector. Most of the time these settings are located under Network.',
fields: [
{
id: 'ip',
name: "IP Adddress",
type: "text",
value: "0.0.0.0"
},
{
id: 'port',
name: "PJLink Port",
type: "number",
value: "4352"
},
{
id: 'password',
name: "PJLink Password",
type: "password",
value: ""
}
]
}
]
};
//# sourceMappingURL=integration.js.map