Hi every one. I'm a programmer and i would like to improve the joystick indi integration.

HI I'have a joystick and a DeepSkyDad AF3 focuer. I would like to add more shortcuts to the driver to change focuser speed.

I was looking at the github.com/DeepSkyDad/indi but I think I'm a little confused because I don't found the Indi control panel.

Could someone give me some guidance.

If I get success I would like to keep working in the joystick improvement, because in the field and when is cold I think is a great inferface.

Thanks.

Read More...

Thanks to mail QHY reporting the problem.

Lets hope they fix it

Thanks

Read More...

Jose Maria replied to the topic 'QHY9s-C QHY9 COLOR WORK ARROUND' in the forum. 3 years ago

Thanks!!!

I was about to ask if anyone knew where these problems were reported.

Fingers crossed!

Read More...

Jose Maria created a new topic ' QHY9s-C QHY9 COLOR WORK ARROUND' in the forum. 3 years ago

I have been given a QHY9s-C. After setting it up and the system recognised it without any problems (although as a mono) I noticed that the images only had one channel.

So looking at the indi-qhy code in the qhy_ccd.cpp file I noticed that a call is made on line 977 inside "Color Support" in the bool function QHYCCD::Connect()
 ret = IsQHYCCDControlAvailable(m_CameraHandle, CAM_COLOR);

I assumed that the QHY SDK was not working properly. To test my theory I put the following line below.

ret = BAYER_RG;

After this, the camera has started to work in colour.

Right now I don't know who to notify and how to notify QHY so they can fix their SDK, if they provide one.

I guess one way to fix that would be to apply this patch for a specific camera identifier.

Regards.

Read More...

Jose Maria created a new topic ' QHY9s-C QHY9 COLOR WORK ARROUND' in the forum. 3 years ago

I have been given a QHY9s-C. After setting it up and the system recognised it without any problems (although as a mono) I noticed that the images only had one channel.

So looking at the indi-qhy code in the qhy_ccd.cpp file I noticed that a call is made on line 977 inside "Color Support" in the bool function QHYCCD::Connect()
 ret = IsQHYCCDControlAvailable(m_CameraHandle, CAM_COLOR);

I assumed that the QHY SDK was not working properly. To test my theory I put the following line below.

ret = BAYER_RG;

After this, the camera has started to work in colour.

Right now I don't know who to notify and how to notify QHY so they can fix their SDK, if they provide one.

I guess one way to fix that would be to apply this patch for a specific camera identifier.

Regards.
 

Read More...

Hi, probably to late. I've the same problem. The root of the problem is in the QHY SDK. I solved it by recompiling the indi_qhy_ccd driver. To test my theory I've make this change at the API call
/////////////////////////////////////////////////////////////////////// Color Support////////////////////////////////////////////////////////////////////
ret = IsQHYCCDControlAvailable(m_CameraHandle, CAM_COLOR);
ret = BAYER_RG;
 

Read More...