-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove camera creation from Observatory #612
Merged
Merged
Changes from 6 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
85ffef8
Camera dependency injection.
wtgee bdd105e
* Removing camera specific tests from observatory
wtgee 7c07fc2
* Add/remove camera methods
wtgee b9a2e1e
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee 0088074
* `config` is option for `create_cameras_from_config`, in which cases
wtgee ea99f15
Fix old docstring
wtgee 19e81df
More docstring fixes
wtgee 8d5a9ac
Small cleanup
wtgee ed5e115
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee e56465a
* Return an empty OrderedDict if no camera confiration present
wtgee 0d5efcb
Moving `list_connected_cameras` into cameras file.
wtgee 46d36be
Responding to PR feedback
wtgee df3d577
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee 81cc3b3
Fix import after moving util function
wtgee 4cf2034
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee 2e8780e
Cleanup of docstrings
wtgee da3f59c
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee 56a1797
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee d47bcfa
Merge branch 'develop' of https://github.com/panoptes/POCS into camer…
wtgee bc8fca3
Better debug output from camera creation
wtgee 867cb08
Remove old comment
wtgee 831c04b
Bumping version for camera dependency injection
wtgee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is true, yet. All the existing camera classes (and associated focuser classes) call their own
connect()
method from their__init__()
. I think you know that though, because I didn't spot any calls ofcamera.connect()
in the diff!On a related note, those calls to
camera.connect()
should be done in parallel as for some of the supported hardware that triggers an initialisation process that takes quite a while and we can significantly speed up startup by doing all the cameras at the same time.