Beginning of the Implementing multple cameras into the AiQ GUI

Features added:
- Onvif discoverable
- New Camera Type combo box
- Access has be changed to be more scalable and dynamic in preparation for more cameras
This commit is contained in:
2025-12-19 16:14:13 +00:00
parent 760987fa75
commit 7aba890514
18 changed files with 455 additions and 333 deletions

View File

@@ -107,12 +107,12 @@ namespace AiQ_GUI
}
else
{
return $"Last serial number not found{Level.ERROR}";
return $"Last serial number not found";
}
}
catch (Exception ex)
{
return $"ERROR: {ex.Message}{Level.ERROR}";
return $"ERROR: {ex.Message}";
}
}
@@ -148,12 +148,12 @@ namespace AiQ_GUI
}
else
{
return $"Serial number not found{Level.ERROR}";
return $"Serial number not found";
}
}
catch (Exception ex)
{
return $"ERROR: {ex.Message}{Level.ERROR}";
return $"ERROR: {ex.Message}";
}
}
@@ -196,7 +196,7 @@ namespace AiQ_GUI
}
catch (Exception ex)
{
return $"Failed to update spreadsheet data, please check manually{Level.ERROR}" + ex.Message;
return $"Failed to update spreadsheet data, please check manually" + ex.Message;
}
}
@@ -225,7 +225,7 @@ namespace AiQ_GUI
}
catch (Exception ex)
{
return $"Failed to update spreadsheet data, please check manually{Level.WARNING}" + ex.Message;
return $"Failed to update spreadsheet data, please check manually" + ex.Message;
}
}