Instead of opening a notepad to modify the settings, make a QT UI to access/modify it
Add a "reset" button to restore the file to its default state, instead of having to delete Appdata folder
"apply" button for the current loaded settings to reload the camera
Add an option in ini files that can be printed to show specs
Either refacto the way we write the ini files currently to have a standard way, or refacto all cams to use JSON instead
Suggestion:
For ini files: add array containing every parameters of the ini file
and a string table allowing to retrieve the specification of a parameter
ex: Parameters = { "Height", "Weight", "FanCtrl" }
Height_spec = { "int", "box", "min", "max" }
Weight_spec = { "int", "box", "min", "max" }
FanCtrl_spec = { "string", "on", "off" }
Instead of opening a notepad to modify the settings, make a QT UI to access/modify it Add a "reset" button to restore the file to its default state, instead of having to delete Appdata folder "apply" button for the current loaded settings to reload the camera
Add an option in ini files that can be printed to show specs Either refacto the way we write the ini files currently to have a standard way, or refacto all cams to use JSON instead
Suggestion: For ini files: add array containing every parameters of the ini file and a string table allowing to retrieve the specification of a parameter ex: Parameters = { "Height", "Weight", "FanCtrl" } Height_spec = { "int", "box", "min", "max" } Weight_spec = { "int", "box", "min", "max" } FanCtrl_spec = { "string", "on", "off" }