Closed balongi2 closed 1 month ago
The speed parameter of manual_focus() says:
speed
manual_focus()
:param speed: -7 to 7 where positive integers focus near and negative integers focus far
However, positive integers (near) use direction_hex == '2' and negative numbers (far) use direction_hex == '3', which is odds with the VISCA spec.
direction_hex == '2'
direction_hex == '3'
Far(Standard) | 8x 01 04 08 02 FF Near(Standard) | 8x 01 04 08 03 FF
(Thanks for this useful module!)
Great catch, thank you. PR created.
The
speed
parameter ofmanual_focus()
says:However, positive integers (near) use
direction_hex == '2'
and negative numbers (far) usedirection_hex == '3'
, which is odds with the VISCA spec.Far(Standard) | 8x 01 04 08 02 FF Near(Standard) | 8x 01 04 08 03 FF
(Thanks for this useful module!)