Initial commit
This commit is contained in:
40
Backend/dist/Integrations/buildin/mitti/integration.js
vendored
Normal file
40
Backend/dist/Integrations/buildin/mitti/integration.js
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
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
|
||||
Reference in New Issue
Block a user