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...