×

INDI Library v2.0.6 is Released (02 Feb 2024)

Bi-monthly release with minor bug fixes and improvements

AX-GTi error messages on start of Ekos

  • Posts: 28
  • Thank you received: 0
Hi Jaseem
Yes found it
if (mount->HasAuxEncoders())
{
if (AuxEncoderSP && strcmp(name, AuxEncoderSP->name) == 0)
{
IUUpdateSwitch(AuxEncoderSP, states, names, n);
if (AuxEncoderSP->sp[1].s == ISS_ON)
{
AuxEncoderSP->s = IPS_OK;
LOG_DEBUG("Turning auxiliary encoders on.");
mount->TurnRAEncoder(true);
mount->TurnDEEncoder(true);
}
else
{
AuxEncoderSP->s = IPS_IDLE;
LOG_DEBUG("Turning auxiliary encoders off.");
mount->TurnRAEncoder(false);
mount->TurnDEEncoder(false);
}
IDSetSwitch(AuxEncoderSP, nullptr);
}
}

My mount does have aux encoders (as does the AZGti), and as I say the Synscan app supports this for my mount and turns them off.
The issue is
1 switch on mount
2 connect in Ekos
3 Issue goto star
4 But the mount will not actually point at the star, so using either the arrows key of slip the clutches point at star
5 Sync
But the mount slews back to position at step 2, it remembered this I tried 'clear model' but still creeps back to position at 2.

As I say don't worry there aren't many people using an Alt/Az mount in Alt/Az mode for imaging...
Thanks
Paul
1 year 8 months ago #84257

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

I'm using AZ-GTi with Canon camera and it works fine. I use plate-solving in Ekos and it centers the target just fine. I don't see how AUX encoders are involved at all in this. The driver is not utilizing them, so why should they matter? What I can confirm is that I can plate-solve and center objects just fine in AZ-GTi WiFi.
1 year 8 months ago #84258

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

  • Posts: 28
  • Thank you received: 0
Hi Jasem
Agreed.
The aux. encoder position must be stored in the mount?
What I need this setup for is, I'm going to a dark site in Sept and want to create a mosaic of the Milky Way. So the plan was to quick setup, and use Ekos mosaic to action.
OK I will experiment with plate solving (I assume the index files will fit in a 32GB card)?
Thanks Paul
1 year 8 months ago #84259

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

From what I read, AUX encoders can be used to improve tracking. At any rate, use plate solving and it will be OK. The index files can be in 32GB SD card.
1 year 8 months ago #84260

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

  • Posts: 21
  • Thank you received: 0
I will send a support request on my AZ-GTi/Stellarmate/Canon camera setup but I think it's unlikely to improve much. I'm using it 100% over VNC to my home Google mesh network. The connection is pretty reliable. The AZ-GTi and Canon communicate with Stellarmate over USB - I have the AZ-GTi USB dongle. The connections to that hardware is reliable. That said this camera/mount/computer setup has never worked well. Possibly it's me not finding the right step-by-step instructions, or misunderstanding what I have read, but it's never tracked correctly using Ekos and KStars. As I say, targets are out-of-frame in 20-30 minutes using KStars but stays in frame for 2-3 hours using SynScan. I haven't used Stellarmate in months as it seemed pointless until Paul resurrected this thread but from memory attempting to duplicate SynScan's 3 star alignment in KStars has never been accurate, and sadly Stellarmate has never correctly plate solved a single shot for me on the Raspberry Pi, but plate solving works fine on the same shots when I do it on my Linux machine.

I'm going to attempt to save any special configurations I added, such as NFS mount instructions and a couple of batch files, and then just load the OS from scratch on a new memory card.

Like Paul I pretty much consider the AZ-GTi to be a bust. I'm glad it works for Jasem but it certainly doesn't work here for me. I don't plan on buying any new hardware. If I did it wouldn't be SkyWatcher hardware. The couple of support requests I made with them on this mount resulted in F-U responses saying they don't support astrophotography on the AZ-GTi. It's a fun little mount with SynScan though.
1 year 8 months ago #84266

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

I've only tested for a a few minutes, maybe up to 10 or 15 minutes and I couldn't see any significant drift. Maybe it does gets much more after 2 or 3 hours. I'm not sure what can be done.. maybe actually making use of AUX encoders IS the reason why synscan app can keep such good tracking performance over a long period of time?
1 year 8 months ago #84279

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

  • Posts: 28
  • Thank you received: 0
Hi Jasem

First the aux. encoders are used for "Freedom Find" (look it up). This allows the scope clutches to be released and the mount moved retaining the scope's position (by another set of encoders on the shaft). This will STOP the aligning processes and so needs to be turned off.

I use Synscan Pro app for my AtlAz and my AZEQ5-GT in EQ mode, in both cases I use the app to turn off the aux. encoders and get great tracking (and sub arc second guiding).

As you know in Indi/Ekos the AZGTi has 2 drivers, one in AltAz mode which is a very old integrated driver called (skywatcherAltAzSimple), this driver look very much like the ASCOM definitions and does not support aux. encoders.

The AZGTi in EQ mode uses the eqmod driver and is completely different (added as third party).
Now I believe this is the driver you use and so cannot be compared it to the AltAzSimple driver.
Now you say you mount works so I checked the driver and found this code and this would explain why your system works.

In eqmodbase.cpp

if (mount->HasAuxEncoders())
{
defineProperty(AuxEncoderSP);
defineProperty(AuxEncoderNP);
LOG_INFO("Mount has auxiliary encoders. Turning them off.");
mount->TurnRAEncoder(false);
mount->TurnDEEncoder(false);
}

So there are 2 options add a comment in Ekos to say AltAz mounts with "Freedom find" are not supported, or add this comment and develop a new driver in the same approach as the eqmod format.

I know how complicated the maths is to track on AltAz mount, because in this type of mount the target and observation position with the time determines the speed and direction of the motors. Unlike in EQ the tracking value is a constant.

Paul
1 year 8 months ago #84285

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

I added AUX encoder detection to SkyWatcher Alt-Az and they are getting turned off by default. However, I remain skeptical that this would have any effect. Please test it and report back.
1 year 8 months ago #84289

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

  • Posts: 21
  • Thank you received: 0
Jasem,
Which firmware version are you using in your AZ-GTI? Is it the newer one that supports equatorial operation or the original one that only supported Alt-AZ?

Thanks,
Mark
1 year 8 months ago #84290

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

The newer version with equatorial support.
1 year 8 months ago #84291

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

  • Posts: 28
  • Thank you received: 0
Thanks Jasem
I don’t know what time zone you are in, seems you never stop.
You have done as much as you can hope for, I think it’s going to be clear tonight so I will give a full test.
Paul
1 year 8 months ago #84299

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

  • Posts: 326
  • Thank you received: 50
I have been using an AZGTi in EQ mode successfully with EKOS for a couple of years, most recently with AZ/EQ firmware 3.39 used only in EQ mode. I just recently bought a new AZGTi with SkyMax 127 combination for AZ visual ‘grab and go’. The AZGTi came loaded with firmware v3.36 (for left hand side AZ use) and I stumbled across this issue that the auxiliary encoders remain engaged even if apparently switched off in SynScan Pro. I updated to the latest v3.39 (still left hand) which changed nothing. The impact of the auxiliary encoders seems to be due to their rather rough granularity, and inaccurate setting up, so that for instance the AZ home position of ‘level, pointing north’ is precisely some arc minutes away in both directions.
I plan to change firmware to the right hand side AZ/EQ v3.39 next, and will report here any differences in the auxiliary encoders operation.
1 year 8 months ago #84300

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

Time to create page: 1.255 seconds