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

Initial release of Alluna TCS2 Driver #1991

Merged
merged 4 commits into from
Feb 7, 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 @@ -513,6 +513,10 @@
<driver name="ActiveFocuser">indi_activefocuser_focus</driver>
<version>1.0</version>
</device>
<device label="Alluna TCS2" manufacturer="Alluna Optics">
<driver name="Alluna TCS2">indi_alluna_tcs2</driver>
<version>1.0</version>
</device>
</devGroup>
<devGroup group="CCDs">
<device label="CCD Simulator" mdpd="true" manufacturer="Simulator">
Expand Down
9 changes: 9 additions & 0 deletions drivers/focuser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,15 @@ add_executable(indi_steeldrive_focus ${steeldrive_SRC})
target_link_libraries(indi_steeldrive_focus indidriver)
install(TARGETS indi_steeldrive_focus RUNTIME DESTINATION bin)

################ Alluna TCS2 Focuser ################

SET(allunatcs2_SRC
alluna_tcs2.cpp)

add_executable(indi_alluna_tcs2 ${allunatcs2_SRC})
target_link_libraries(indi_alluna_tcs2 indidriver)
install(TARGETS indi_alluna_tcs2 RUNTIME DESTINATION bin)

# ############### FocusLynx Focuser ################
SET(focuslynx_SRC
focuslynxbase.cpp
Expand Down
Loading
Loading