Skip to content

Commit dc9982c

Browse files
authored
new ESP32go mount driver (lx200generic based) (#2362)
* new ESP32go mount driver (lx200generic based) Driver for ESP32go & PicGoto DIY mounts. More info at: https://groups.io/g/PicgotoGroup * Update lx200generic.cpp fix
1 parent 9442954 commit dc9982c

5 files changed

Lines changed: 801 additions & 1 deletion

File tree

drivers.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,10 @@
383383
<driver name="Planewave">indi_planewave_telescope</driver>
384384
<version>0.1</version>
385385
</device>
386+
<device label="ESP32go" manufacturer="DIY">
387+
<driver name="LX200 ESP32go">indi_lx200_esp32go</driver>
388+
<version>1.0</version>
389+
</device>
386390
</devGroup>
387391
<devGroup group="Rotators">
388392
<device label="Rigelsys nFrame" manufacturer="Rigel Systems">

drivers/telescope/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ add_executable(indi_lx200generic
7575
lx200_pegasus_nyx101.cpp
7676
lx200_10micron.cpp
7777
ioptronHC8406.cpp
78-
eq500x.cpp)
78+
eq500x.cpp
79+
lx200_esp32go.cpp)
7980

8081
if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
8182
target_compile_definitions(indi_lx200generic PRIVATE -D_XOPEN_SOURCE=700)
@@ -107,6 +108,7 @@ execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink indi_lx200generic
107108
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink indi_lx200generic \$ENV{DESTDIR}${BIN_INSTALL_DIR}/indi_lx200_10micron)\n
108109
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink indi_lx200generic \$ENV{DESTDIR}${BIN_INSTALL_DIR}/indi_ioptronHC8406)\n
109110
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink indi_lx200generic \$ENV{DESTDIR}${BIN_INSTALL_DIR}/indi_eq500x_telescope)\n
111+
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink indi_lx200generic \$ENV{DESTDIR}${BIN_INSTALL_DIR}/indi_lx200_esp32go)\n
110112
")
111113
set_target_properties(indi_lx200generic PROPERTIES POST_INSTALL_SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/make_lx200generic_symlink.cmake)
112114

0 commit comments

Comments
 (0)