Skip to content

Commit

Permalink
Driver for new DIY Dew Controller - CheapoDC (#2024)
Browse files Browse the repository at this point in the history
* Initial commit for CheapoDC driver.

* Cleanup up after testing.

* Fixes for issue found in Pull request auto check.
  • Loading branch information
hcomet authored Mar 23, 2024
1 parent 372d293 commit c5f64f5
Show file tree
Hide file tree
Showing 4 changed files with 1,791 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,10 @@
<driver name="myDewControllerPro">indi_myDewControllerPro</driver>
<version>1.0</version>
</device>
<device label="CheapoDC" manufacturer="DIY">
<driver name="CheapoDC">indi_cheapodc</driver>
<version>1.0</version>
</device>
<device label="MyDCP4ESP32" manufacturer="DIY">
<driver name="MyDCP4ESP32">indi_mydcp4esp32</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
Expand Up @@ -264,6 +264,14 @@ add_executable(indi_myDewControllerPro ${myDewControllerPro_SRC})
target_link_libraries(indi_myDewControllerPro indidriver)
install(TARGETS indi_myDewControllerPro RUNTIME DESTINATION bin)

# ########## CheapoDC Driver ###############
SET(cheapodc_SRC
cheapodc.cpp)

add_executable(indi_cheapodc ${cheapodc_SRC})
target_link_libraries(indi_cheapodc indidriver)
install(TARGETS indi_cheapodc RUNTIME DESTINATION bin)

# ########## MYDCP4ESP32 Driver ###############
SET(mydcp4esp32_SRC
mydcp4esp32.cpp)
Expand Down
Loading

0 comments on commit c5f64f5

Please sign in to comment.