diff options
author | Ted Trask <ttrask01@yahoo.com> | 2018-12-30 15:10:26 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2018-12-30 15:10:26 +0000 |
commit | 39b4911eba898c1736d4a9219273fb2ae7b33576 (patch) | |
tree | ba20fccb9091e915f1cf4cba7345104ef742fd85 /config/process_put.lua | |
parent | 5babbc852f4f5a6b602704c6aaf862287d893c63 (diff) | |
download | acf-provisioning-39b4911eba898c1736d4a9219273fb2ae7b33576.tar.bz2 acf-provisioning-39b4911eba898c1736d4a9219273fb2ae7b33576.tar.xz |
Add Polycom VVX Screen Saver support
Diffstat (limited to 'config/process_put.lua')
-rw-r--r-- | config/process_put.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/process_put.lua b/config/process_put.lua index 83eaeb4..0222ddf 100644 --- a/config/process_put.lua +++ b/config/process_put.lua @@ -61,6 +61,10 @@ function process_polycom() elseif string.find(n, "localClockEnabled") then params.value.device.value.clockenable.value = (v == "1") + -- this attribute enables screen saver + elseif n == "up.screenSaver.enabled" then + params.value.device.value.screensaverenable.value = (v == "1") + else -- search attribute name for reg_name like "reg.1." -- and for rest like "fwdStatus" |