-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
867 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 GodSharp | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# OpcBrowser | ||
|
||
![.NET](https://img.shields.io/badge/dotnet-.NET-blueviolet?style=flat&logo=dotnet) | ||
![Opc DA Browser](https://img.shields.io/badge/opcda-browser-brightgreen) | ||
![Azure DevOps builds](https://img.shields.io/azure-devops/build/godsharp/1c52d2a6-2f97-403b-b400-85a514528422/5?label=pipeline&logo=azurepipelines) | ||
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/godsharp/opcbrowser/continuous?label=workflow&logo=github) | ||
|
||
|
||
Connect to opc server, browse opc tag, read and write tag value. | ||
|
||
# OpcDaBrowser | ||
|
||
![Opc DA Browser](https://img.shields.io/badge/opcda-browser-brightgreen) | ||
![.NET](https://img.shields.io/badge/dotnet-winform-blueviolet?style=flat&logo=dotnet) | ||
![.NET](https://img.shields.io/badge/windows-only-0078D6?style=flat&logo=windows) | ||
|
||
OPC DA Specification | ||
|
||
## References | ||
|
||
- GodSharp.Opc.Da | ||
|
||
Sample Code: [github](https://github.com/godsharp/opcsample) | [gitee](https://gitee.com/godsharp/opcsample) | ||
|
||
[![GodSharp.Opc.Da.OpcAutomation](https://img.shields.io/nuget/v/GodSharp.Opc.Da.OpcNetApi?label=GodSharp.Opc.Da.OpcAutomation&logo=nuget)](https://www.nuget.org/packages/GodSharp.Opc.Da.OpcAutomation) [![GodSharp.Opc.Da.OpcNetApi](https://img.shields.io/nuget/v/GodSharp.Opc.Da.OpcNetApi?label=GodSharp.Opc.Da.OpcNetApi&logo=nuget)](https://www.nuget.org/packages/GodSharp.Opc.Da.OpcNetApi) | ||
|
||
## Requirement | ||
.NET Framework >= 4.0 | ||
|
||
## Screenshots | ||
|
||
- main page | ||
![main page](./assets/da-1.png) | ||
|
||
- server list | ||
![server list](./assets/da-2.png) | ||
|
||
- tag list | ||
![tag list](./assets/da-3.png) | ||
|
||
- tag action | ||
![tag action](./assets/da-4.png) | ||
|
||
|
||
# LICENSE | ||
|
||
[MIT LICENSE](./LICENSE) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System.Diagnostics; | ||
using System.Windows.Forms; | ||
|
||
namespace OpcDaBrowser | ||
{ | ||
public partial class FormAbout : Form | ||
{ | ||
public FormAbout() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void button2_Click(object sender, System.EventArgs e) | ||
{ | ||
Close(); | ||
} | ||
|
||
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
OpenLink(sender); | ||
} | ||
|
||
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
OpenLink(sender); | ||
} | ||
|
||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
OpenLink(sender); | ||
} | ||
|
||
private void OpenLink(object sender) | ||
{ | ||
LinkLabel linkLabel= sender as LinkLabel; | ||
if (linkLabel is null) return; | ||
Process.Start(linkLabel.Text); | ||
} | ||
} | ||
} |
Oops, something went wrong.