https://github.com/mbari-org/python-visca
https://github.com/mbari-org/python-visca
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mbari-org/python-visca
- Owner: mbari-org
- License: gpl-3.0
- Created: 2023-11-16T00:54:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-25T20:42:24.000Z (10 months ago)
- Last Synced: 2025-03-25T21:31:57.025Z (10 months ago)
- Language: Python
- Size: 276 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# visca
A Python library for controlling Sony VISCA cameras with specific classes for the DSPL Optim camera
# Installation
Run `pip install git+git://github.com/mbari-org/python-visca.git`.
# Usage
```
from optim import Optim
cam = Optim(output="/dev/ttyUSB0")
cam.init()
cam.set_wide_zoom()
cam.set_iris_AE()
cam.set_iris('F11')
```