1
0

petr's changes

This commit is contained in:
2026-02-16 16:55:57 +01:00
parent e790d12ea1
commit 7d898e04f2
31 changed files with 416 additions and 35 deletions

View File

@@ -0,0 +1,36 @@
meta {
name: Blackout Settings
type: http
seq: 8
}
post {
url: {{base_url}}/bl_s
body: formUrlEncoded
auth: inherit
}
body:form-urlencoded {
~bldmc: 0
~blptm: 0
~blprm: 0
~blgwm: 0
~bltim: 0
}
docs {
# Blackout Settings
Configure blackout behaviors.
## Set Parameters
- `bldmc`: Blackout when DMC (0-1)
- `blptm`: Blackout when pan/tilt move (0-1)
- `blprm`: Blackout when prism/colour wheel move (0-1)
- `blgwm`: Blackout when gobo wheel move (0-1)
- `bltim`: Timeout blackout (0-1)
## Response
- All parameters as "off"/"on"
- `status`: 0 if success
}

View File

@@ -18,6 +18,8 @@ body:form-urlencoded {
~cmixm: 0
~chrwh: 0
~thefs: 0
~whip: 0
~whip83z: 0
}
docs {
@@ -33,6 +35,8 @@ docs {
- `cmixm`: Colour mixing mode (0-1: RGB/CMY)
- `chrwh`: Chromatic white (0-1)
- `thefs`: Tungsten effect simulation (0-5: various wattages)
- `whip` (optional): White point (device-specific)
- `whip83z` (optional): White point 8000K (device-specific)
## Response
- All parameters as strings or on/off

View File

@@ -0,0 +1,38 @@
meta {
name: Date/Time Settings
type: http
seq: 12
}
post {
url: {{base_url}}/ldt_s
body: formUrlEncoded
auth: inherit
}
body:form-urlencoded {
~dtmo: 1
~dty: 2026
~dtd: 1
~dth: 0
~dtmi: 0
~dts: 0
}
docs {
# Date/Time Settings
Configure device date and time.
## Set Parameters
- `dtmo`: Month (1-12)
- `dty`: Year
- `dtd`: Day (1-days in month)
- `dth`: Hour (0-23)
- `dtmi`: Minute (0-59)
- `dts`: Second (0-59)
## Response
- `dtmo`, `dty`, `dtd`, `dth`, `dtmi`, `dts`
- `status`: 0 if success
}

View File

@@ -28,7 +28,7 @@ docs {
- `dsd`: Display screensaver time (0-10)
- `dtl`: Display touchscreen lock (0-10)
- `dor`: Display orientation (0-2: normal/inverted/auto)
- `daofft`: Activate off timer (0-1)
- `daofft` (optional): Activate off timer (0-1)
## Response
- All parameters with appropriate formats

View File

@@ -0,0 +1,24 @@
meta {
name: Ethernet Reset Defaults
type: http
seq: 3
}
post {
url: {{base_url}}/d_ipnm
body: none
auth: inherit
}
docs {
# Ethernet Reset Defaults
Reset IP address and network mask to defaults.
## Set Parameters
None.
## Response
- `ip`: Default IP address
- `netm`: Default network mask
}

View File

@@ -17,6 +17,7 @@ body:form-urlencoded {
~emau: 1
~emas: 1
~esau: 1
~rnscope: scope
}
docs {
@@ -25,13 +26,13 @@ docs {
Configure ethernet/network mode.
## Set Parameters
- `emod`: Ethernet mode (0-4, or 0-2 for Promotion devices)
- Labels: disable/ArtNet/gMA1/gMA2/sACN (or DMX/ArtNet/sACN)
- `emod`: Ethernet mode (0-4, or 0-2 for Promotion devices). Labels: disable/ArtNet/gMA1/gMA2/sACN (or DMX/ArtNet/sACN)
- `ee2d`: Ethernet to DMX (0-1)
- `eanu`: ArtNet universe (0-255)
- `emau`: MANet I/II universe (1-256)
- `emas`: MANet session ID (1-32)
- `esau`: sACN universe (1-32000)
- `rnscope` (optional): RDMNet scope group (1-16 characters, 0-9/a-z/A-Z/-)
## Response
- All set parameters as strings/ints

View File

@@ -33,6 +33,7 @@ docs {
- `optm`: Optics module (0-1)
## Response
If graphics engine is not supported: empty JSON array `[]`.
- Various string and integer fields
- `status`: 0 if success
}

View File

@@ -37,6 +37,7 @@ docs {
- `lofdm`: Lamp off when DMX missing (0-1)
## Response
If lamp subsystem is not supported: empty JSON array `[]`.
- All parameters as strings
- `status`: 0 if success
}

View File

@@ -29,6 +29,7 @@ docs {
- `gamc`: Gamma curve (0-5)
## Response
If LED engine is not supported: empty JSON array `[]`.
- `cprj`, `rprj`: Integer values
- `colt`, `gamc`: String labels
- `status`: 0 if success

View File

@@ -21,6 +21,10 @@ body:form-urlencoded {
~fannl: 50
~them: 0
~frq: 0
~freq: 0
~freqa: 0
~gind: 0
~gwhm: 0
}
docs {
@@ -32,13 +36,17 @@ docs {
- `mics`: Microphone sensitivity (0-19)
- `fanm`: Fan mode (0-1 or 0-3)
- `tmpu`: Temperature unit (0-1: F/C)
- `wfiap`: WiFi access point (0-1)
- `fsmo`: Followspot mode (0-3)
- `cpm`: Close proximity mode (0-1)
- `btns`: Buttons setting (0-1)
- `fannl`: Fan noise level (0-100)
- `them`: Theater mode (0-1)
- `frq`: Frequency (0-13951)
- `wfiap` (optional): WiFi access point (0-1)
- `fsmo` (optional): Followspot mode (0-3)
- `cpm` (optional): Close proximity mode (0-1)
- `btns` (optional): Buttons setting (0-1)
- `fannl` (optional): Fan noise level (0-100)
- `them` (optional): Theater mode (0-1)
- `frq` (optional): Frequency (0-13951)
- `freq` (optional): LEDs frequency (device-specific)
- `freqa` (optional): LEDs frequency adjust (device-specific)
- `gind` (optional): Green indicator (device-specific)
- `gwhm` (optional): Green/white mode (device-specific)
## Response
- All parameters formatted appropriately

View File

@@ -31,6 +31,7 @@ docs {
- `pte`: Pan/tilt EMS (0-1)
## Response
If pan/tilt subsystem is not supported: empty JSON array `[]`.
- All parameters as "off"/"on" or mode strings
- `status`: 0 if success
}

View File

@@ -22,19 +22,18 @@ docs {
## Set Parameters
- `unlink` (optional): Set to 1 to unlink wireless card
## Response Variants
**Linked:**
## Response
Linked:
- `lwc`: "linked"
- `lws`: Signal strength (0-100%)
**Unlinked:**
Unlinked:
- `lwc`: "unlinked"
- `lws`: "..."
**Not installed:**
Not installed:
- `lwc`: "not installed"
- `lws`: "..."
- `status`: 0 if success
- `status` (optional): 0 if success
}