Well Jasem based on your feedback I found the issue. So I had recreated my darks but never deleted my old darks from the master list. So it kept picking the oldest file which didn’t match for gain.
Sent from my iPhone using Tapatalk
Read More...
Not to put a spanner in the works but I have a tec cooled camera and always shoot all my darks and lights at -5deg and I still had the issue. I’ll try widen the temp tolerance limit as suggested and see if that works in case there was some issue while shooting the darks.
Sent from my iPhone using Tapatalk
Read More...
I have noticed the same issue. I took a whole suite of darks at different times and bins,Using my standard gain and offset yet when I tick the dark frame option it always comes back with no matching dark frame.
Sent from my iPhone using Tapatalk
Read More...
Hi folks,
I’m attempting to use kstars with Indi server and I’m running into a road block. So when I take an image with my AA26C it saves to the remote device really fast. But if I try and take a preview image it can take up to 180 seconds to send back to my laptop which makes using it a no go. I’m currently using a wired Ethernet connection on an mini pc running Ubuntu 20. Is there a setting that can be tweaked to increase the download speed I tried changing the transfer buffer to 8Mb.
I am able to use the miniPc as a stand alone device and VNC into it but I wanted to try run kstars on my laptop and control from there.
Has anyone else run into this issue?
Thanks.
Lenny.
Sent from my iPhone using Tapatalk
Read More...
Hi folks,
I was wondering if there was an msi installer or executable file for installing Stellarsolver on windows. It’s mentioned in Git about downloading the latest exe file but I haven’t been able to find one.
I can’t use craft to build it due to work restrictions on my laptop.
Thanks.
Lenny
Sent from my iPhone using Tapatalk
Read More...
Hi folks. I am imaging with a Altair Astro quad band filter and have had issues with dark subtraction causing negative values and truncating the lights to almost black in PixInsight . See attached. I believe the solution is too add a pedestal offset to the light files. So how do you do this ? Or can it be done in Ekos?
Or if someone outer could tell me is there something else I should be doing to combat by dark files having a higher mean value than my lights.
Thanks,
Lenny.
Ok I gather this has to do with the broken PPA for Ubuntu 20 mentioned in another post. Will close this off until that’s resolved and check again.
Read More...
Thanks Folks,
Jabian, yes i am completely disconnected and my (phone ) which I am using to try control device is connected to the Hot spot I created.
Phomer60, Yes I can SSH into the device over the hotspot which is the weird thing. I did notice that the output of
netstat -nl | grep 5900
tcp 0 0 0.0.0.0:5900 0.0.0.0:* LISTEN
tcp6 0 0 :::5900 :::* LISTEN
Hi folks,
I wonder if you could give me some advice. I have a UTx-3115 fanless pc setup to run Ubuntu and Kstars. I have real VNC and vino set up and I am able to VNC to the device over the internet and my WiFi’.
However when I create a hotspot on the device and try to connect I get a port is not listening error and I can’t figure it out.
I’ve tried the internal IP and the device name but cannot connect. There is no firewall running.
Obviously I want the hotspot so I can control my device when I’m imaging at my remote location. I was using a Pi but figured the fanless pc was more rugged.
Any pointers would be greatly appreciated
Thanks.
Lenny.
Read More...
Hi Karl,
Sorry I missed this post and only got around to testing it today. So I added in another
pslr_shutter(camhandle);
{ 0x12f52, "K-30", false, true, true,
{ 0x12f52, "K-30", false, true, true,
Hey Karl,
Sorry for the delay is responding, I can check out your fork and test as needed sure no problem. So based off the latest update you did I tested Manual mode and was able to take multiple pictures below 30 seconds with out issue. I then set the camera to bulb mode and tried taking some picture above 30 seconds. It was successful but there was a positive the sequence executed as planned however the shutter didn't stay open. So as you know the camera has 2 bulb settings press and hold or press to open press to close. Would it be possible to write a function for the K30 to fire the shutter at the start of the sequence and fire again at the end and i could set the camera to the second option and test this?
I tried taking a picture with an exposure longer than 30 seconds in manual mode but it just defaulted the timer back to 30 seconds, it did complete the 30 seconds exposure though so that's a win.
Thanks,
Lenny.
made some progress was able to get pktriggermode to allow bulb mode by setting plsr_model.c line 981 to
{ 0x12f52, "K-30", false, true, **true,** false, false, false,
How ever when I take a picture the shutter fires and closes and then the countdown starts so its like it dosent know to hold the shutter open......
Read More...
So i managed to get the camera to be recognized by editing the JSON file, So the version of PKtriggercord is 0.85, I downloaded the git from
github.com/asalamon74/pktriggercord
and had a look at plsr.c and got the hex address for the K30, once I updated this the camera was recognized and the settings showed values for the bulb configuration where as before it was unknowns.
See attached
G_MODULE_EXPORT void user_mode_combo_changed_cb(GtkAction *action, gpointer user_data) {
DPRINT("user_mode_combo_changed_cb\n");
pslr_gui_exposure_mode_t val = gtk_combo_box_get_active(GTK_COMBO_BOX(GW("user_mode_combo")));
if (!status_new) {
return;
}
assert(val >= 0);
assert(val < PSLR_GUI_EXPOSURE_MODE_MAX);
if (status_new == NULL || val != status_new->exposure_mode ) {
pslr_set_exposure_mode(camhandle, val);
}
}
pslr_gui_exposure_mode_t exposure_mode_conversion( pslr_exposure_mode_t exp ) {
switch ( exp ) {
case PSLR_EXPOSURE_MODE_GREEN:
return PSLR_GUI_EXPOSURE_MODE_GREEN;
case PSLR_EXPOSURE_MODE_P:
return PSLR_GUI_EXPOSURE_MODE_P;
case PSLR_EXPOSURE_MODE_SV:
return PSLR_GUI_EXPOSURE_MODE_SV;
case PSLR_EXPOSURE_MODE_TV:
return PSLR_GUI_EXPOSURE_MODE_TV;
case PSLR_EXPOSURE_MODE_AV:
case PSLR_EXPOSURE_MODE_AV_OFFAUTO:
return PSLR_GUI_EXPOSURE_MODE_AV;
case PSLR_EXPOSURE_MODE_TAV:
return PSLR_GUI_EXPOSURE_MODE_TAV;
case PSLR_EXPOSURE_MODE_M:
case PSLR_EXPOSURE_MODE_M_OFFAUTO:
return PSLR_GUI_EXPOSURE_MODE_M;
case PSLR_EXPOSURE_MODE_B:
case PSLR_EXPOSURE_MODE_B_OFFAUTO:
return PSLR_GUI_EXPOSURE_MODE_B;
case PSLR_EXPOSURE_MODE_X:
return PSLR_GUI_EXPOSURE_MODE_X;
case PSLR_EXPOSURE_MODE_MAX:
return PSLR_GUI_EXPOSURE_MODE_MAX;
}
return 0;
}
So i tried pktriggercord on windows, it dosent recognise the camera model in the json file. So its not able to change mode or set bulb settings. So when camera is in Manual mode It works fine i can take pictures of various lengths up to 30 seconds with out issue. If i knew how to get it to recognize camera model then maybe i could test changing the settings. If i start it up in Bulb mode it gives an error as sen in attached
image