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

40 lines
1007 B
JavaScript

exports.__esModule = true;
var Integration = {
name: 'Mitti',
description: 'Control Mitti through the Mitti Undecked Bridge.',
main: require('./mitti'),
actions: [
{
id: 'clip',
name: 'Set the Mitti clip'
},
{
id: 'play',
name: 'Play current clip'
},
{
id: 'stop',
name: 'Stop current clip'
},
{
id: 'next',
name: 'Go to next clip'
},
{
id: 'previous',
name: 'Go to previous clip'
}
],
connections: [
{
type: 'mitti',
name: 'Mitti Instance',
message: 'For this connection to work you need to enable Hyperdeck in the Mitti settings.',
fields: [
{ id: 'ip', name: 'IP Address', type: 'text', value: '0.0.0.0' }
]
}
]
};
module.exports = Integration;
//# sourceMappingURL=integration.js.map