clvLabs / PyATEMMax

A Python library to monitor and control Blackmagic Design ATEM video switchers.
https://clvlabs.github.io/PyATEMMax/
GNU General Public License v3.0
79 stars 20 forks source link

Findings in the docs #18

Closed 68040 closed 2 years ago

68040 commented 2 years ago

Some little findings in the docs

docs/data/protocol

docs/logging/

docs/methods/exec/

docs/methods/set/

docs/examples/scan/

docs/examples/scan-query/

sierrax369 commented 2 years ago

range(1,255) stopes at 254. you can try it with for i in range(1,255): print(i)

sierrax369 commented 2 years ago

switcher.atem.mixeffects mixEffect1..4: The names are MixEffect1..4 the values are 0..3

>>> switcher.atem.mixEffects.mixEffect1   
PyATEMMax.ATEMProtocolEnums.ATEMConstant(name=mixEffect1, value=0)
clvLabs commented 2 years ago

Let's see if I can answer them all...

docs/data/protocol

docs/logging/

docs/methods/exec/

docs/methods/set/

docs/examples/scan/

docs/examples/scan-query/

clvLabs commented 2 years ago

Version 1.0b8 already available.

sierrax369 commented 2 years ago

"As pointed by @sierrax369, range(1,255) returns values from 0 to 254 (see Python range docs)." values from 1 to 254 ;-)