pyobs-brot 2.0.0.dev8__tar.gz → 2.0.0.dev9__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_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/PKG-INFO +1 -1
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/pyobs_brot/brottelescope.py +6 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/pyproject.toml +1 -1
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/uv.lock +1 -1
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/.github/workflows/pypi.yml +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/.github/workflows/ruff.yml +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/.gitignore +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/.pre-commit-config.yaml +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/.readthedocs.yml +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/LICENSE +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/README.md +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/docs/Makefile +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/docs/make.bat +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/docs/requirements.txt +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/docs/source/_static/pyobs.gif +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/docs/source/conf.py +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/docs/source/index.rst +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/pyobs_brot/__init__.py +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/pyobs_brot/brotdome.py +0 -0
- {pyobs_brot-2.0.0.dev8 → pyobs_brot-2.0.0.dev9}/pyobs_brot/brotroof.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyobs-brot
|
|
3
|
-
Version: 2.0.0.
|
|
3
|
+
Version: 2.0.0.dev9
|
|
4
4
|
Summary: pyobs module for BROTlib telescopes
|
|
5
5
|
Author-email: Tim-Oliver Husser <thusser@uni-goettingen.de>, Lukas Melzig <lukas.melzig@stud.uni-goettingen.de>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -138,6 +138,12 @@ class BrotBaseTelescope(
|
|
|
138
138
|
az = self.brot.telescope._telemetry.POSITION.HORIZONTAL.AZ
|
|
139
139
|
await self.comm.set_state(IPointingAltAz, AltAzState(alt=alt, az=az))
|
|
140
140
|
|
|
141
|
+
# publish focus state
|
|
142
|
+
await self.comm.set_state(
|
|
143
|
+
IFocuser,
|
|
144
|
+
FocuserState(focus=float(self.brot.focus.position - self.focus_offset), focus_offset=self.focus_offset),
|
|
145
|
+
)
|
|
146
|
+
|
|
141
147
|
# publish temperatures
|
|
142
148
|
readings = []
|
|
143
149
|
for name, loc in self.temperatures.items():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pyobs-brot"
|
|
3
|
-
version = "2.0.0.
|
|
3
|
+
version = "2.0.0.dev9"
|
|
4
4
|
description = "pyobs module for BROTlib telescopes"
|
|
5
5
|
authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }, { name = "Lukas Melzig", email = "lukas.melzig@stud.uni-goettingen.de" }]
|
|
6
6
|
requires-python = ">=3.11"
|
|
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
|