Bi-monthly INDI Library released with new drivers and bug fixes.
Please Log in or Create an account to join the conversation.
if (currentStatus == ISD::Telescope::MOUNT_TRACKING && m_Status == ISD::Telescope::MOUNT_SLEWING)
{
...
currentTargetPosition = new SkyPoint(telescopeCoord.ra(), telescopeCoord.dec());
...
}
ISD::Telescope::Status currentStatus = currentTelescope->status();
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
if 'n' in s and 'N' in s:
self.is_slewing = False
self.is_tracking = False
if not 'n' in s and not 'N' in s:
self.is_slewing = True
self.is_tracking = False
if not 'n' in s and 'N' in s:
self.is_slewing = False
self.is_tracking = True
bool LX200_OnStep::ReadScopeStatus()
getCommandString(PortFD, OSStat, ":GU#"); // :GU# returns a string containg controller status
if (strcmp(OSStat, OldOSStat) != 0) //if status changed
{
// ============= Telescope Status
strcpy(OldOSStat, OSStat);
IUSaveText(&OnstepStat[0], OSStat);
if (strstr(OSStat, "n") && strstr(OSStat, "N"))
{
IUSaveText(&OnstepStat[1], "Idle");
TrackState = SCOPE_IDLE;
}
if (strstr(OSStat, "n") && !strstr(OSStat, "N"))
{
IUSaveText(&OnstepStat[1], "Slewing");
TrackState = SCOPE_SLEWING;
}
if (strstr(OSStat, "N") && !strstr(OSStat, "n"))
{
IUSaveText(&OnstepStat[1], "Tracking");
TrackState = SCOPE_TRACKING;
}
if (!strstr(OSStat, "n") && !strstr(OSStat, "N"))
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.