From 41515125911cb80ca0da37bb1f5d282c346fedbc Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Sun, 10 Dec 2023 10:54:38 +0100 Subject: [PATCH 1/2] added 4x4 binning --- pyobs_fli/flicamera.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyobs_fli/flicamera.py b/pyobs_fli/flicamera.py index 471aa03..139f3bf 100644 --- a/pyobs_fli/flicamera.py +++ b/pyobs_fli/flicamera.py @@ -122,7 +122,7 @@ async def list_binnings(self, **kwargs: Any) -> List[Tuple[int, int]]: Returns: List of available binnings as (x, y) tuples. """ - return [(1, 1), (2, 2), (3, 3)] + return [(1, 1), (2, 2), (3, 3), (4, 4)] async def _expose(self, exposure_time: float, open_shutter: bool, abort_event: asyncio.Event) -> Image: """Actually do the exposure, should be implemented by derived classes. From 542f34fdfc3479fa855b26fe4eac1e2432d2bb43 Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Sun, 10 Dec 2023 10:54:50 +0100 Subject: [PATCH 2/2] v1.1.4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a6918af..b43d341 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyobs-fli" -version = "1.1.3" +version = "1.1.4" description = "pyobs module for FLI cameras" authors = ["Tim-Oliver Husser "] license = "MIT"