I'd appreciate for links to code or any methods how to do that (through PHD API or sth). Just need any better method than slew + time.sleep :)

Read More...

Hello

I'm using indi with eqmod (EQ6-R) and need to send guiding pulses from python script (can't use PHD, it will analyse Sun images using opencv and calculate translation). It would be great if there was an option available via indi_setprop, but can't find appropriate. How can I do that?

Read More...

Lucas created a new topic ' Clear align points via pyindi-clients' in the forum. 2 years ago

Hello

I'm using EQ6-R and kstars+ekos+indi+eqmod, and I want to send from python using pyindi-client command which clear points list in indi-eqmod (in GUI it's under "Align" tab -> "Clear list" button).

I tried to do some reverse-engineering and I've found that it's done in following steps:

pointset->Reset();
pointset->setBlobData(AlignDataBP);
IUFindNumber(AlignCountNP, "ALIGNCOUNT_POINTS")->value = pointset->getNbPoints();
IUFindNumber(AlignCountNP, "ALIGNCOUNT_TRIANGLES")->value = pointset->getNbTriangles();
IDSetNumber(AlignCountNP, NULL);

and that's the place where I've gave up :) I don't know how to call that function from PointSet... I'd appreciate if someone could help me how to do that using pyindi-client

Read More...