Skip to content

Commit

Permalink
Universal Roll off roof driver (#2092)
Browse files Browse the repository at this point in the history
* Add universal ROR driver and client

* Driver is operational. Need one field test

* Stop relays when parked or unparked is detected.
  • Loading branch information
knro authored Jul 29, 2024
1 parent 65b9270 commit 70722a0
Show file tree
Hide file tree
Showing 8 changed files with 874 additions and 10 deletions.
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,10 @@
<driver name="DragonLAIR">indi_dragonlair_dome</driver>
<version>1.0</version>
</device>
<device label="Universal ROR" manufacturer="Others">
<driver name="Universal ROR">indi_universalror_dome</driver>
<version>0.1</version>
</device>
</devGroup>
<devGroup group="Weather">
<device label="Weather Simulator" manufacturer="Simulator">
Expand Down
10 changes: 10 additions & 0 deletions drivers/dome/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,13 @@ SET(dragonlair_SRC
add_executable(indi_dragonlair_dome ${dragonlair_SRC})
target_link_libraries(indi_dragonlair_dome indidriver ${HTTPLIB_LIBRARY})
install(TARGETS indi_dragonlair_dome RUNTIME DESTINATION bin)

# ############### Universal ROR ################
SET(universalror_SRC
universal_ror.cpp
universal_ror_client.cpp
)

add_executable(indi_universalror_dome ${universalror_SRC})
target_link_libraries(indi_universalror_dome indidriver indiclient)
install(TARGETS indi_universalror_dome RUNTIME DESTINATION bin)
Loading

0 comments on commit 70722a0

Please sign in to comment.