40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
Object.defineProperty(exports, "__esModule", { value: 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
|