Skip to content

Commit

Permalink
Pegasus FocusCube3 (#2034)
Browse files Browse the repository at this point in the history
* PegasusAstro SaddlePowerBox version 1.0 driver

* Fix std::round for Macos

* PegasusAstro FocusCube3
  • Loading branch information
chrysikos authored Mar 23, 2024
1 parent dcaa4ce commit 4c1f018
Show file tree
Hide file tree
Showing 4 changed files with 628 additions and 0 deletions.
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

0 comments on commit 4c1f018

Please sign in to comment.