ISO setting issue nikon d5300

Report bugs and errors to the digiCamControl development team.
Post Reply
allagrange_
Posts: 4
Joined: Sat Oct 15, 2022 9:34 pm

ISO setting issue nikon d5300

Post by allagrange_ » Sat Oct 15, 2022 9:57 pm

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.

ISO setting issue nikon d5300

Advertisment
 

admin
Site Admin
Posts: 225
Joined: Tue Sep 15, 2015 8:33 pm

Re: ISO setting issue nikon d5300

Post by admin » Tue Oct 18, 2022 10:02 pm


ghauer
Posts: 3
Joined: Tue Oct 18, 2022 12:14 am

Re: ISO setting issue nikon d5300

Post by ghauer » Tue Oct 18, 2022 10:48 pm

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

allagrange_
Posts: 4
Joined: Sat Oct 15, 2022 9:34 pm

Re: ISO setting issue nikon d5300

Post by allagrange_ » Wed Oct 19, 2022 12:16 am

Thank you both! The newer version seems to work smoothly :D

ghauer
Posts: 3
Joined: Tue Oct 18, 2022 12:14 am

Re: ISO setting issue nikon d5300

Post by ghauer » Wed Oct 19, 2022 12:57 am

new version works fine, tnx

admin
Site Admin
Posts: 225
Joined: Tue Sep 15, 2015 8:33 pm

Re: ISO setting issue nikon d5300

Post by admin » Wed Oct 19, 2022 8:26 am

Thx for the feedback

allagrange_
Posts: 4
Joined: Sat Oct 15, 2022 9:34 pm

Re: ISO setting issue nikon d5300

Post by allagrange_ » Wed Oct 19, 2022 7:14 pm

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

admin
Site Admin
Posts: 225
Joined: Tue Sep 15, 2015 8:33 pm

Re: ISO setting issue nikon d5300

Post by admin » Thu Oct 20, 2022 9:02 am


allagrange_
Posts: 4
Joined: Sat Oct 15, 2022 9:34 pm

Re: ISO setting issue nikon d5300

Post by allagrange_ » Thu Oct 20, 2022 2:07 pm

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.

Post Reply