Page 1 of 1

ISO setting issue nikon d5300

Posted: Sat Oct 15, 2022 9:57 pm
by allagrange_
Hi!

I've recently buy a nikon d5300, and i want to fully control the camera from pc. In particular, i was unable to set the ISO values from the SW, which seems unable to override those set directly via camera. Does anyone had the same issue and has solved it?
All the other settings works just fine.

Sorry for my english :) And thank you all for the replies.

Re: ISO setting issue nikon d5300

Posted: Tue Oct 18, 2022 10:02 pm
by admin

Re: ISO setting issue nikon d5300

Posted: Tue Oct 18, 2022 10:48 pm
by ghauer
within the
digiCamControl/CameraControl.Devices/Nikon/NikonD600Base.cs/

private void IsoNumber_ValueChanged(object sender, string key, long val)
{
lock (Locker)
{
SetProperty(CONST_CMD_SetDevicePropValue, BitConverter.GetBytes((int)val),
CONST_PROP_ExposureIndexEx);
}
}

i changed the CONST_PROP_ExposureIndexEx to CONST_PROP_ExposureIndex; fixed the problem with the D5300

Re: ISO setting issue nikon d5300

Posted: Wed Oct 19, 2022 12:16 am
by allagrange_
Thank you both! The newer version seems to work smoothly :D

Re: ISO setting issue nikon d5300

Posted: Wed Oct 19, 2022 12:57 am
by ghauer
new version works fine, tnx

Re: ISO setting issue nikon d5300

Posted: Wed Oct 19, 2022 8:26 am
by admin
Thx for the feedback

Re: ISO setting issue nikon d5300

Posted: Wed Oct 19, 2022 7:14 pm
by allagrange_
Hi! Today i tried to use CameraControlCmd.exe (simple /capture command), and it gave me this error message:

Code: Select all

digiCamControl command line utility running

Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
   at System.ReadOnlySpan`1..ctor(T[] array)
   at SQLitePCL.utf8z.FromString(String s)
   at SQLite.SQLiteConnection..ctor(SQLiteConnectionString connectionString)
   at SQLite.SQLiteConnection..ctor(String databasePath, Boolean storeDateTimeAsTicks)
   at CameraControl.Core.Database.Database..ctor(String path) in C:\Work\VS\CameraControl\CameraControl.Core\Database\Database.cs:line 15
   at CameraControl.Core.ServiceProvider.ConfigureDatabase() in C:\Work\VS\CameraControl\CameraControl.Core\ServiceProvider.cs:line 90
   at CameraControlCmd.Program.InitApplication() in C:\Work\VS\CameraControl\CameraControlCmd\Program.cs:line 527
   at CameraControlCmd.Program.Main(String[] args) in C:\Work\VS\CameraControl\CameraControlCmd\Program.cs:line 87

Re: ISO setting issue nikon d5300

Posted: Thu Oct 20, 2022 9:02 am
by admin

Re: ISO setting issue nikon d5300

Posted: Thu Oct 20, 2022 2:07 pm
by allagrange_
Thx for the quick answer!
This version works great! If i find any other problems in the next few days i'll let you know.