forked from nrkno/sofie-timeline-state-resolver
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Johan Nyman <[email protected]>
- Loading branch information
Showing
8 changed files
with
388 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
packages/timeline-state-resolver-types/src/generated/artnet.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* eslint-disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run "yarn generate-schema-types" to regenerate this file. | ||
*/ | ||
|
||
export interface ArtNetOptions { | ||
host: string | ||
mode: Mode | ||
fps: number | ||
} | ||
|
||
export enum Mode { | ||
FULL = 'full', | ||
PARTIAL = 'partial' | ||
} | ||
|
||
export interface MappingArtnetUniverse { | ||
universe: number | ||
mappingType: MappingArtnetType.Universe | ||
} | ||
|
||
export enum MappingArtnetType { | ||
Universe = 'universe', | ||
} | ||
|
||
export type SomeMappingArtnet = MappingArtnetUniverse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
packages/timeline-state-resolver/src/integrations/artnet/$schemas/notes.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
notes | ||
|
||
additional json for building channel groups | ||
wont be included yet due to complexity relating to ui experience | ||
|
||
|
||
"size": { | ||
"type": "integer", | ||
"ui:title": "Size", | ||
"ui:description": "The number of channels to be included", | ||
"ui:summaryTitle": "Group Size", | ||
"default": 1, | ||
"min": 1, | ||
"max": 512 | ||
}, | ||
"channels": { | ||
"type": "string", | ||
"ui:title": "Channels", | ||
"ui:description": "comma separated list of channels to use", | ||
"ui:summaryTitle": "Channel List", | ||
"default": 1, | ||
"min": 1, | ||
"max": 512 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.