Hello Niko,
I can not help with the loading of preset(s) ... I until today not really use it.
I can confirm that I see sometimes the LED on after a change on the gain or the USB traffic with the SharpCap 4.1 "beta"-line.
For example this morning (= last night evening), I saw it one time with the version 4.1.10885.
The LED is "on" but the setting in SharpCap shows "off" ... the only way is to set the LED "on" and "off" manually.
If you have the Pro version ... try this short script. It shall be loaded in the Settings "Startup Scripts" list before use (and restart SharpCap).
Code: Select all
# *******************************************************************************************
def LED_Shut_Off():
SharpCap.SelectedCamera.Controls.FindByName("GPS Calibration LED").Value = "On"
SharpCap.SelectedCamera.Controls.FindByName("GPS Calibration LED").Value = "Off"
print("LED Shutt-Off")
SharpCap.AddCustomButton(" LED__Shut-Off |", None, "Switch-Off the LED", LED_Shut_Off)
# *******************************************************************************************
Regards,
Jean-Francois