Initial commit

This commit is contained in:
2023-08-29 19:55:48 +02:00
commit 7c2eec4446
473 changed files with 40947 additions and 0 deletions

View 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