资源简介
分享github案例 Sharp7连接西门子PLC
代码片段和文件信息
/*=============================================================================|
| PROJECT Sharp7 1.0.3 |
|==============================================================================|
| Copyright (C) 2016 Davide Nardella |
| All rights reserved. |
|==============================================================================|
| Sharp7 is free software: you can redistribute it and/or modify |
| it under the terms of the Lesser GNU General Public License as published by |
| the Free Software Foundation either version 3 of the License or |
| (at your option) any later version. |
| |
| It means that you can distribute your commercial software which includes |
| Sharp7 without the requirement to distribute the source code of your |
| application and without the requirement that your application be itself |
| distributed under LGPL. |
| |
| Sharp7 is distributed in the hope that it will be useful |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| Lesser GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License and a |
| copy of Lesser GNU General Public License along with Sharp7. |
| If not see http://www.gnu.org/licenses/ |
|==============================================================================|
History:
* 1.0.0 2016/10/09 First Release
* 1.0.1 2016/10/22 Added CoreCLR compatibility (CORE_CLR symbol must be
defined in Build options).
Thanks to Dirk-Jan Wassink.
* 1.0.2 2016/11/13 Fixed a bug in CLR compatibility
* 1.0.3 2017/01/25 Fixed a bug in S7.GetIntAt(). Thanks to lupal1
Added S7Timer Read/Write. Thanks to Lukas Palkovic
*/
using System;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Collections.Generic;
//------------------------------------------------------------------------------
// If you are compiling for UWP verify that WINDOWS_UWP or NETFX_CORE are
// defined into Project Properties->Build->Conditional compilation symbols
//------------------------------------------------------------------------------
#if WINDOWS_UWP || NETFX_CORE
using System.Threading.Tasks;
using Windows.Networking;
using Windows.Networking.Sockets;
using
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\
文件 4195 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\.gitignore
文件 1075 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\LICENSE
文件 339 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\README.md
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\Sharp7Library\
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\Sharp7Library\Properties\
文件 1402 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\Sharp7Library\Properties\AssemblyInfo.cs
文件 131480 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\Sharp7Library\Sharp7.cs
文件 2409 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\Sharp7Library\Sharp7Library.csproj
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\PlcServices\
文件 252 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\PlcServices\ConnectionStates.cs
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\Properties\
文件 1424 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\Properties\AssemblyInfo.cs
文件 388 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\Regions.cs
文件 2490 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Infrastructure\SimpleHmi.Infrastructure.csproj
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\
文件 1572 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\DummyPlc2Service.cs
文件 492 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\IPlc2Service.cs
文件 2351 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\ModbusPlc2Service.cs
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\Properties\
文件 1418 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\Properties\AssemblyInfo.cs
文件 3067 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\SimpleHmi.Plc2Service.csproj
文件 133 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.Plc2Service\packages.config
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\
文件 2766 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\DummyPlcService.cs
文件 656 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\IPlcService.cs
目录 0 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\Properties\
文件 1416 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\Properties\AssemblyInfo.cs
文件 7625 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\S7PlcService.cs
文件 2961 2017-03-24 22:41 HMI-with-WPF-part-3-Communication-with-multiple-plc-master\SimpleHmi.PlcService\SimpleHmi.PlcService.csproj
............此处省略60个文件信息
相关资源
- WPF翻页照片特效浏览源代码
- [源代码] 《领域驱动设计 (C# 2008 实
- C# WPF扫描仪调用Twain
- Wpf生成word文档
- WPF 基础视频教程共50集---27.资源字典
- WPF动画 窗体跳转过渡动画 包含大量窗
- 24652561RevitWPFAddin.zip
- WPF圆润的TabItem和TabControl
- c#影院系统大作业,班评第一名
- C#实现将WPF字体呈现到OpenGL 支持汉字
- wpf 搜集整理demo源码(都是c#写的,惊
- WPF滚动相册+图文介绍
- 原创WPF卫生相关文档编辑器
- HelixToolkitWPF中文手册.rar
- 深入浅出WPF_含源码
- C#基于wpf实现的天气日历生活助手
- WPF实现多级菜单(菜单多按钮)
- WPF调用log4.net
- WPF TreeListView
- WPF漂亮倒计时界面
- WPF进度条演示程序
- 安卓使用poi XWPFDocument读取及修改wor
- C# WPF实现读取显示DICOM
- WPF实现3D 地球仪
- Unity in Action: Multiplatform Game Developmen
- 一个WPF实现的翻书效果的
- WPF文字描边增强版,支持竖排,支持
- wpf 仿office
- WPF结合DEV换肤
- WPF漂亮的导航菜单
评论
共有 条评论