Skip to content

Commit

Permalink
Add New Driver Terrans PowerBoxGo V2 (#2086)
Browse files Browse the repository at this point in the history
  • Loading branch information
iTerrans authored Jul 27, 2024
1 parent 49ad189 commit cc0f30c
Show file tree
Hide file tree
Showing 4 changed files with 1,367 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,10 @@
<driver name="Terrans PowerBoxPro V2">indi_terrans_powerboxpro_v2</driver>
<version>1.0</version>
</device>
<device label="Terrans PowerBoxGo V2" manufacturer="Terrans Industry">
<driver name="Terrans PowerBoxGo V2">indi_terrans_powerboxgo_v2</driver>
<version>1.0</version>
</device>
<device label="Waveshare Relay" manufacturer="Waveshare">
<driver name="Waveshare Relay">indi_wavesharemodbus_relay</driver>
<version>1.0</version>
Expand Down
8 changes: 8 additions & 0 deletions drivers/auxiliary/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
INSTALL(FILES 99-indi_auxiliary.rules DESTINATION ${UDEVRULES_INSTALL_DIR})
ENDIF()
# ########## Terrans PowerBoxGo V2 ###############
SET(terranspowerboxgov2_SRC
Terrans_PowerBoxGo_V2.cpp)

add_executable(indi_terrans_powerboxgo_v2 ${terranspowerboxgov2_SRC})
target_link_libraries(indi_terrans_powerboxgo_v2 indidriver)
install(TARGETS indi_terrans_powerboxgo_v2 RUNTIME DESTINATION bin)

# ########## Terrans PowerBoxPro V2 ###############
SET(terranspowerboxprov2_SRC
Terrans_PowerBoxPro_V2.cpp)
Expand Down
Loading

0 comments on commit cc0f30c

Please sign in to comment.