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

Pegasus FocusCube3 #2034

Merged
merged 6 commits into from
Mar 23, 2024
Merged
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
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,10 @@
<device label="Pegasus FocusCube" manufacturer="Pegasus Astro">
<driver name="Pegasus FocusCube">indi_pegasus_focuscube</driver>
<version>1.0</version>
</device>
<device label="Pegasus FocusCube3" manufacturer="Pegasus Astro">
<driver name="Pegasus FocusCube3">indi_pegasus_focuscube3</driver>
<version>1.0</version>
</device>
<device label="Pegasus ProdigyMF" manufacturer="Pegasus Astro">
<driver name="Pegasus MMC-7000AH">indi_pegasus_prodigyMF</driver>
Expand Down
8 changes: 8 additions & 0 deletions drivers/focuser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,14 @@ add_executable(indi_pegasus_focuscube ${pegasusfocuscube_SRC})
target_link_libraries(indi_pegasus_focuscube indidriver)
install(TARGETS indi_pegasus_focuscube RUNTIME DESTINATION bin)

# ############### Pegasus FocusCube3 Focuser ################
SET(pegasusfocuscube3_SRC
pegasus_focuscube3.cpp)

add_executable(indi_pegasus_focuscube3 ${pegasusfocuscube3_SRC})
target_link_libraries(indi_pegasus_focuscube3 indidriver)
install(TARGETS indi_pegasus_focuscube3 RUNTIME DESTINATION bin)

# ############### Pegasus ProdigyMF Focuser ################
SET(pegasusprodigyMF_SRC
pegasus_prodigyMF.cpp)
Expand Down
Loading
Loading