diff --git a/MAUI/Anyline.Examples.MAUI.csproj b/MAUI/Anyline.Examples.MAUI.csproj index 15e5da3..7d174f2 100644 --- a/MAUI/Anyline.Examples.MAUI.csproj +++ b/MAUI/Anyline.Examples.MAUI.csproj @@ -18,7 +18,7 @@ 9C37433F-9192-4C96-B49A-B9A7E047FBC2 - 3.0.0 + 4.0.0 1 12.0 @@ -74,11 +74,12 @@ + - - + + @@ -112,6 +113,7 @@ + diff --git a/MAUI/Models/AnylineScanModes.cs b/MAUI/Models/AnylineScanModes.cs index 047dd47..91a0457 100644 --- a/MAUI/Models/AnylineScanModes.cs +++ b/MAUI/Models/AnylineScanModes.cs @@ -34,6 +34,7 @@ public static List GetAnylineScanModesGroupedList() new AnylineScanMode("TIN - DOT (North America Only)","tire_tin_dot_config.json"), new AnylineScanMode("Tire Size Specifications","tire_size_config.json"), new AnylineScanMode("Commercial Tire Identification Numbers","tire_commercial_tire_id_config.json"), + new AnylineScanMode("Tire Make","tire_make_config.json"), }), new AnylineScanModeGroup("Maintenance, Repair & Operations", new List{ new AnylineScanMode("Universal Serial Number", "mro_usnr_config.json"), diff --git a/MAUI/Resources/Raw/Configs/tire_make_config.json b/MAUI/Resources/Raw/Configs/tire_make_config.json new file mode 100644 index 0000000..fab339b --- /dev/null +++ b/MAUI/Resources/Raw/Configs/tire_make_config.json @@ -0,0 +1,48 @@ +{ + "cameraConfig": { + "captureResolution": "1080" + }, + "flashConfig": { + "mode": "manual", + "alignment": "top_left" + }, + "viewPluginConfig": { + "pluginConfig": { + "id": "Tire|Tire Make", + "tireMakeConfig": { + "upsideDownMode": "AUTO" + }, + "cancelOnResult": true + }, + "cutoutConfig": { + "style": "rect", + "width": 720, + "alignment": "center", + "maxWidthPercent": "80%", + "ratioFromSize": { + "width": 720, + "height": 144 + }, + "strokeWidth": 2, + "strokeColor": "FFFFFF", + "cornerRadius": 4, + "outerColor": "000000", + "outerAlpha": 0.5, + "feedbackStrokeColor": "0099FF", + "offset": { + "x": 0, + "y": -15 + } + }, + "scanFeedbackConfig": { + "animation": "traverse_multi", + "animationDuration": 250, + "style": "contour_rect", + "strokeWidth": 2, + "strokeColor": "0099FF", + "beepOnResult": false, + "vibrateOnResult": true, + "blinkAnimationOnResult": true + } + } +} \ No newline at end of file