Hi there - I think I know the answer to this but thought I'd confirm - can you specify altaz coordinates in PyIndi and have the telescope slew to them? I tried the following:

# Set the desired coordinates
telescope_altaz=device_telescope.getNumber("HORIZONTAL_COORD")
while not(telescope_altaz):
time.sleep(0.5)
telescope_altaz=device_telescope.getNumber("HORIZONTAL_COORD")
telescope_altaz[0].value=startAltAz
telescope_altaz[1].value=startAltAz
indiclient.sendNewNumber(telescope_altaz)

# and wait for the scope has finished moving
while (telescope_altaz.getState()==PyIndi.IPS_BUSY):
print("Scope Moving ", telescope_altaz[0].value, telescope_altaz[1].value)
time.sleep(2)

But the scope doesn't move. So I imagine not - the KStars client does slew to Altaz coords for automated flats. or is that just calculating a RA and DEC based on the AltAz coords desired and slews to that? I know I've got good connections and stuff since I can park and unpark the scope but this isn't working for me. Any input appreciated thanks!

Read More...