Skip to content

Commit

Permalink
Merge pull request #46 from scriptorron/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
scriptorron authored Aug 16, 2023
2 parents 6a57d6e + a4afd0e commit a382f57
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ the driver available in the KStars/EKOS profile editor in "CCD"->"OTHERS". Not a
For uninstalling the driver do:
```commandline
sudo rm -f /usr/share/indi/indi_pylibcamera.xml
sudo pip uninstall install indi_pylibcamera
sudo pip3 uninstall indi_pylibcamera
```

## Running
Expand Down
4 changes: 2 additions & 2 deletions src/indi_pylibcamera/CameraControl.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ def snooped_FitsHeader(self):
Aperture = self.parent.knownVectors["TELESCOPE_INFO"]["TELESCOPE_APERTURE"].value
FocalLength = self.parent.knownVectors["TELESCOPE_INFO"]["TELESCOPE_FOCAL_LENGTH"].value
else:
Aperture = self.parent.knownVectors["GUIDER_INFO"]["TELESCOPE_APERTURE"].value
FocalLength = self.parent.knownVectors["GUIDER_INFO"]["TELESCOPE_FOCAL_LENGTH"].value
Aperture = self.parent.knownVectors["TELESCOPE_INFO"]["GUIDER_APERTURE"].value
FocalLength = self.parent.knownVectors["TELESCOPE_INFO"]["GUIDER_FOCAL_LENGTH"].value
FitsHeader += [
("FOCALLEN", FocalLength, "Focal Length (mm)"),
("APTDIA", Aperture, "Telescope diameter (mm)"),
Expand Down
2 changes: 1 addition & 1 deletion src/indi_pylibcamera/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
INDI driver for libcamera supported cameras
"""

__version__ = "2.1.0"
__version__ = "2.1.1"
2 changes: 1 addition & 1 deletion src/indi_pylibcamera/indi_pylibcamera.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<devGroup group="CCDs">
<device label="INDI pylibcamera">
<driver name="INDI pylibcamera">indi_pylibcamera</driver>
<version>2.1.0</version>
<version>2.1.1</version>
</device>
</devGroup>
</driversList>

0 comments on commit a382f57

Please sign in to comment.