×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

Bugfix for mixed up lunar and solar rates on iOptron CEM25P

  • Posts: 5
  • Thank you received: 0
I recently pointed my scope to the moon and was surprised about INDI showing me that my tracking was set to solar rate. They are consistently mixed up for my iOptron CEM25P.
I was able to fix this with the following change:
diff --git a/drivers/telescope/ieqpro.cpp b/drivers/telescope/ieqpro.cpp
index 54ccf326..0a5be269 100644
--- a/drivers/telescope/ieqpro.cpp
+++ b/drivers/telescope/ieqpro.cpp
@@ -116,8 +116,8 @@ bool IEQPro::initProperties()
 
     /* Tracking Mode */
     AddTrackMode("TRACK_SIDEREAL", "Sidereal", true);
-    AddTrackMode("TRACK_SOLAR", "Solar");
     AddTrackMode("TRACK_LUNAR", "Lunar");
+    AddTrackMode("TRACK_SOLAR", "Solar");
     AddTrackMode("TRACK_KING", "King");
     AddTrackMode("TRACK_CUSTOM", "Custom");

Since I don't have a Github account, somebody please submit my patch for validation. I assume other iOptron mounts are also affected.

Thanks,
Max
4 years 5 months ago #45063

Please Log in or Create an account to join the conversation.

Time to create page: 0.351 seconds