Skip to content
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

added darklight cover calibrator driver #2107

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,11 @@
<device label="Waveshare Relay" manufacturer="Waveshare">
<driver name="Waveshare Relay">indi_wavesharemodbus_relay</driver>
<version>1.0</version>
</device>
</device>
<device label="DarkLight Cover Calibrator" manufacturer="10th Tee Astronomy">
<driver name="DarkLight Cover Calibrator">indi_darklight_covercalibrator</driver>
<version>0.1</version>
</device>
</devGroup>
<devGroup group="Domes">
<device label="ScopeDome Dome" manufacturer="ScopeDome">
Expand Down
8 changes: 8 additions & 0 deletions drivers/auxiliary/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -351,3 +351,11 @@ SET(wavesharerelay_SRC
add_executable(indi_wavesharemodbus_relay ${wavesharerelay_SRC})
target_link_libraries(indi_wavesharemodbus_relay indidriver)
install(TARGETS indi_wavesharemodbus_relay RUNTIME DESTINATION bin)

# ############### DarkLight Cover Calibrator ################
SET(darklight_covercalibrator_SRC
darklight_covercalibrator.cpp)

add_executable(indi_darklight_covercalibrator ${darklight_covercalibrator_SRC})
target_link_libraries(indi_darklight_covercalibrator indidriver)
install(TARGETS indi_darklight_covercalibrator RUNTIME DESTINATION bin)
Loading