TcOpen.Inxton.TcoCognexVision.Wpf
0.11.0-alpha.41
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Framework 4.8
This package targets .NET Framework 4.8. The package is compatible with this framework or higher.
This is a prerelease version of TcOpen.Inxton.TcoCognexVision.Wpf.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package TcOpen.Inxton.TcoCognexVision.Wpf --version 0.11.0-alpha.41
NuGet\Install-Package TcOpen.Inxton.TcoCognexVision.Wpf -Version 0.11.0-alpha.41
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TcOpen.Inxton.TcoCognexVision.Wpf" Version="0.11.0-alpha.41" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TcOpen.Inxton.TcoCognexVision.Wpf --version 0.11.0-alpha.41
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TcOpen.Inxton.TcoCognexVision.Wpf, 0.11.0-alpha.41"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TcOpen.Inxton.TcoCognexVision.Wpf as a Cake Addin #addin nuget:?package=TcOpen.Inxton.TcoCognexVision.Wpf&version=0.11.0-alpha.41&prerelease // Install TcOpen.Inxton.TcoCognexVision.Wpf as a Cake Tool #tool nuget:?package=TcOpen.Inxton.TcoCognexVision.Wpf&version=0.11.0-alpha.41&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TcoCognexVision
Introduction
The TcoCognexVision is a set of libraries covering the product portfolio of the vision systems from the vendor Cognex for the target PLC platform Twincat and TcOpen framework.
The package consists of a PLC library providing control logic and its .NET twin counterpart aimed at the visualization part. This package currently covers following product range:
- Dataman firmware v5.x.x
- More enroute
General TcOpen Prerequisites
Check general requisits for TcOpen here.
Dataman v5.x.x
PLC enviroment
Preconditions: The
gsdml
file(s) included in this package is(are) copied into the subfolder ..\Config\Io\Profinet\ of the TwinCAT3 instalation folder, before opening Visual Studio. The Profinet interface of the slave device is activated, its Profinet name is set and its network parameters are set to match the address range of the Profinet master. This settings needs to by done by DATAMAN SETUP TOOL SOFTWARE provided by Cognex.
Implementation steps.
1. Declare the hardware structure in the Global Variable list (GVL).
VAR_GLOBAL myVeryFirstDatamanGVL : TcoCognexVision.TcoDatamanIO_v_5_x_x; END_VAR
2. Build the XAE project.
3. Add Profinet master device, set its network adapter and network parameters.
4. Using the
gsdml
file mentioned, add Profinet slave device, choose proper DAP (Device Access Point) and set its Profinet name and network parameters to match those already assigned by the configuration tool.5. If necessary for your application, change the predefined submodule
User Data - 64 bytes
in the slots 6 to matches your requirements.6. If necessary for your application, change the predefined submodule
Result Data - 64 bytes
in the slots 7 to matches your requirements.7. Link all items of the structure
GVL.myVeryFirstDatamanGVL
with the respective items of the Application Process Identifier (API) of the slave device, so as the itemsInputs.PnIoBoxState
,Inputs.PnIoBoxDiag
andOutputs.PnIoBoxCtrl
.8. Create the Function Block that extends the
TcoCore.TcoContext
function block.9. Inside the declaration part of the function block created, add an instance of the
TcoCognexVision.TcoDataman_v_5_x_x
function block with the initialization according to the example.FUNCTION_BLOCK myVeryFirstTcoContext EXTENDS TcoCore.TcoContext VAR {attribute addProperty Name "<#Enter the user friendly name of this instance here!!!#>"} myVeryFirstDataman : TcoCognexVision.TcoDataman_v_5_x_x(THIS^); END_VAR
10. Add the
Main
method to the function block created in the step 8, and insert theTcoDataman_v_5_x_x
instance call with passing the mapped hardware structure.11. Add call of the method
Service()
according to the example. By calling this method, all control elements of this component are accessible later in the visualization.myVeryFirstDataman(inoIoData:= GVL.myVeryFirstDatamanGVL); myVeryFirstDataman.Service();
12. In the declaration part of the
MAIN(PRG)
create an instance of the function block created in the step 8 according to the example.PROGRAM MAIN VAR myVeryFirstTcoContextInstance : myVeryFirstTcoContext; END_VAR
13. Into the body of the
MAIN(PRG)
add the call of theRun()
method of the instance created in the previous step, according to the example.myVeryFirstTcoContextInstance.Run();
14. Build and save the XAE project.
15. Activate configuration, load the PLC program and swith the PLC into the run mode.
.NET enviroment
Preconditions: All neccessary packages are installed, all neccessary references are set, connector to the target PLC is set.
MainWindow.xaml
has its view model declared and itsDataContext
is set to this view model, according to the example.<Window.DataContext> <local:MainWindowViewModel /> </Window.DataContext>
Implementation steps.
1. Run the
Vortex Builder
.2. Into the
MainWindow.xaml
insert any kind of container, for exampleStackPanel
and bind itsDataContext
to theMAIN
of theEntryPointToYourPlc
.<StackPanel DataContext="{Binding EntryPointToYourPlc.MAIN}"> </StackPanel>
3. Into the container added, insert the
RenderableContentControl
and bind itsDataContext
to themyVeryFirstTcoContextInstance.myVeryFirstDataman
, using thePresentationType
of the valueService
.<vortex:RenderableContentControl DataContext="{Binding myVeryFirstTcoContextInstance.myVeryFirstDataman}" PresentationType="Service"/>
4. After starting the application and expanding the view, final view should look as follows:
links
Example project could be found here TodoEnterLinkToExample
How to video could be found here TodoEnterLinkToVideo
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0-windows7.0 is compatible. net6.0-windows was computed. net7.0-windows was computed. net8.0-windows was computed. |
.NET Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- TcOpen.Inxton.TcoCore.Wpf (>= 0.11.0-alpha.41)
- TcOpen.TcoCognexVisionConnector (>= 0.11.0-alpha.41)
-
net5.0-windows7.0
- TcOpen.Inxton.TcoCore.Wpf (>= 0.11.0-alpha.41)
- TcOpen.TcoCognexVisionConnector (>= 0.11.0-alpha.41)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.11.0-alpha.79 | 55 | 10/10/2024 |
0.11.0-alpha.74 | 68 | 6/25/2024 |
0.11.0-alpha.73 | 51 | 6/17/2024 |
0.11.0-alpha.71 | 62 | 6/3/2024 |
0.11.0-alpha.68 | 61 | 4/29/2024 |
0.11.0-alpha.65 | 69 | 3/27/2024 |
0.11.0-alpha.64 | 69 | 3/21/2024 |
0.11.0-alpha.63 | 69 | 3/18/2024 |
0.11.0-alpha.62 | 57 | 3/14/2024 |
0.11.0-alpha.61 | 59 | 2/26/2024 |
0.11.0-alpha.60 | 68 | 2/13/2024 |
0.11.0-alpha.59 | 54 | 1/22/2024 |
0.11.0-alpha.58 | 53 | 1/22/2024 |
0.11.0-alpha.57 | 68 | 1/19/2024 |
0.11.0-alpha.56 | 70 | 1/8/2024 |
0.11.0-alpha.55 | 75 | 1/4/2024 |
0.11.0-alpha.54 | 84 | 12/12/2023 |
0.11.0-alpha.53 | 66 | 12/12/2023 |
0.11.0-alpha.52 | 83 | 12/6/2023 |
0.11.0-alpha.50 | 81 | 11/30/2023 |
0.11.0-alpha.49 | 75 | 11/24/2023 |
0.11.0-alpha.48 | 70 | 11/24/2023 |
0.11.0-alpha.45 | 89 | 10/6/2023 |
0.11.0-alpha.44 | 71 | 9/22/2023 |
0.11.0-alpha.43 | 84 | 9/7/2023 |
0.11.0-alpha.42 | 81 | 9/7/2023 |
0.11.0-alpha.41 | 77 | 9/5/2023 |
0.11.0-alpha.35 | 99 | 7/25/2023 |
0.11.0-alpha.32 | 89 | 7/20/2023 |
0.11.0-alpha.29 | 77 | 5/22/2023 |
0.11.0-alpha.26 | 85 | 4/21/2023 |
0.11.0-alpha.23 | 103 | 3/22/2023 |
0.11.0-alpha.19 | 98 | 2/22/2023 |
0.11.0-alpha.17 | 90 | 2/15/2023 |
0.11.0-alpha.16 | 110 | 2/2/2023 |
0.11.0-alpha.15 | 103 | 1/29/2023 |
0.11.0-alpha.12 | 96 | 1/20/2023 |
0.11.0-alpha.8 | 100 | 1/11/2023 |
0.11.0-alpha.6 | 100 | 12/20/2022 |
0.11.0-alpha.3 | 91 | 12/12/2022 |
0.11.0-alpha.2 | 96 | 12/6/2022 |
0.10.0-alpha.31 | 91 | 11/28/2022 |
0.10.0-alpha.30 | 95 | 11/23/2022 |
0.10.0-alpha.27 | 102 | 11/14/2022 |
0.10.0-alpha.22 | 89 | 11/2/2022 |
0.10.0-alpha.20 | 96 | 10/27/2022 |
0.10.0-alpha.15 | 97 | 10/24/2022 |
0.10.0-alpha.10 | 104 | 10/13/2022 |
0.10.0-alpha.9 | 109 | 10/13/2022 |
Early dev stage. Experimental. DO NOT USE IN PRODUCTION!!!