pyobs-aravis 2.0.0.dev4__tar.gz → 2.0.0.dev5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/PKG-INFO +1 -1
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/pyobs_aravis/araviscamera.py +2 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/pyproject.toml +1 -1
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/uv.lock +1 -1
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/.github/workflows/pypi.yml +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/.github/workflows/ruff.yml +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/.pre-commit-config.yaml +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/.readthedocs.yml +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/CHANGELOG.rst +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/LICENSE +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/README.md +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/docs/Makefile +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/docs/make.bat +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/docs/requirements.txt +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/docs/source/_static/pyobs.gif +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/docs/source/conf.py +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/docs/source/index.rst +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/pyobs_aravis/__init__.py +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/pyobs_aravis/aravis.py +0 -0
- {pyobs_aravis-2.0.0.dev4 → pyobs_aravis-2.0.0.dev5}/pyobs_aravis/gui.py +0 -0
|
@@ -37,6 +37,7 @@ class AravisCamera(BaseVideo, IExposureTime):
|
|
|
37
37
|
self._settings: dict[str, Any] = {} if settings is None else settings
|
|
38
38
|
self._camera_lock = asyncio.Lock()
|
|
39
39
|
self._buffers = buffers
|
|
40
|
+
self._exposure_time: float = 0.0
|
|
40
41
|
|
|
41
42
|
if device is not None:
|
|
42
43
|
self.add_background_task(self._capture)
|
|
@@ -125,6 +126,7 @@ class AravisCamera(BaseVideo, IExposureTime):
|
|
|
125
126
|
"""
|
|
126
127
|
await self.activate_camera()
|
|
127
128
|
self._camera.set_exposure_time(exposure_time * 1e6) # type: ignore[union-attr]
|
|
129
|
+
self._exposure_time = exposure_time
|
|
128
130
|
await self.comm.set_state(IExposureTime, ExposureTimeState(exposure_time=exposure_time))
|
|
129
131
|
|
|
130
132
|
|
|
@@ -1770,7 +1770,7 @@ wheels = [
|
|
|
1770
1770
|
|
|
1771
1771
|
[[package]]
|
|
1772
1772
|
name = "pyobs-aravis"
|
|
1773
|
-
version = "2.0.0.
|
|
1773
|
+
version = "2.0.0.dev5"
|
|
1774
1774
|
source = { editable = "." }
|
|
1775
1775
|
dependencies = [
|
|
1776
1776
|
{ name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|