首页 上一页 1 2 下一页 尾页

下载LNS DDE Server 2.1演示版 点击:4836 | 回复:37



gongkongedit

    
  • 精华:1099帖
  • 求助:0帖
  • 帖子:14392帖 | 54470回
  • 年度积分:0
  • 历史总积分:622
  • 注册:2008年9月08日
发表于:2003-06-01 08:48:00
楼主
提供 LNS DDE Server 2.1演示版 演示方式: 1小时 LNS Server shutdown ,须启动重新LNS DDE Server运行.或者连续运行30天。 Intouch 7.1(请和Wanderware北京代表处或者代理商北京汉锦电子公司联系) Intouch 7.1和LNS DDE Server 2.1 将Lonworks控制网络运行于 TCP/IP 上性能稳定,可靠,速度快,能满足大型系统的要求。 需要看演示的朋友,可以和我联系。 lonworks@gongkong.com vaton@gongkong.com



xinqinlong

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 11回
  • 年度积分:0
  • 历史总积分:11
  • 注册:2002年11月17日
发表于:2003-02-08 09:41:00
1楼
我公司正在考虑使用LonWorks,所以很希望能得到你的演示. 多谢 xinqinlong@sina.com

SYDQ

  • 精华:0帖
  • 求助:0帖
  • 帖子:1帖 | 3回
  • 年度积分:0
  • 历史总积分:6
  • 注册:2003年1月10日
发表于:2003-02-09 12:49:00
2楼
衣老师: 你好。我们正在进行lonworks列车监控网络的试验工作,特别希望得到您的演示和帮助。谢谢! sysgxw@sina.com

pengkx

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 2回
  • 年度积分:0
  • 历史总积分:2
  • 注册:2003年2月09日
发表于:2003-02-09 13:27:00
3楼
我想要 pengkexue@sina.com

吴子

  • 精华:0帖
  • 求助:0帖
  • 帖子:2帖 | 4回
  • 年度积分:0
  • 历史总积分:10
  • 注册:2002年11月16日
发表于:2003-02-12 21:58:00
4楼
请问如何在LNS DDE 中实现显示消息的监控?本人试用时只能监控网络变量。

KEEP

  • 精华:0帖
  • 求助:0帖
  • 帖子:5帖 | 116回
  • 年度积分:0
  • 历史总积分:186
  • 注册:2002年12月03日
发表于:2003-02-13 09:00:00
5楼
That is very easy to do ! If you have a network called "myNetwork1" which have a subSystem called "Subsystem 1" which is what LonMaker (LMW) will produce for you by default. In this subSystem you could have a device called e.g. "Device 1". The device could have a NodeBuilder 3 neuron C application that look like this: msg_tag tag_out; ... ... ... void generic_send_msg(int code, int data[], int length) { int i; // Send a message to the tag_out msg_out.tag = tag_out; msg_out.code = code; for (i=0; i < length; i++) msg_out.data[i] = data[i]; msg_send(); } when (msg_arrives) { int code; int data[1]; code = msg_in.code; data[0] = msg_in.data[0]; switch (code) { case 11: data[0] = data[0] + 5; // Add 1 to received msg data element 1 generic_send_msg(code, data, 1); break; case 12: data[0] = data[0] + 6; // Add 2 to received msg data element 1 generic_send_msg(code, data, 1); break; default: // For all other msg codes do nothing! break; } } a) Create and deploy above NB3 device b) Create a dynamic msg point on e.g. you network interface device virtual function block and bind Device 1 msg_out to it. This is important as otherwise the device will not propagate the outbound messages to the network! Now, lets say you have a excel spreadsheet in which you wand to monitor what messages are being send and received from and to the device. 1) Create a new Excel spreadsheet 2) Enter <=LNSDDE|myNetwork1.Subsystem 1.MT!Device 1.msg_in> in cell "A1" (without the <>) 3) Enter <=LNSDDE|myNetwork1.Subsystem 1.MT!Device 1.msg_out> in cell "A2" (without the <>) 4) create a button and e.g. called the default "CommandButton1" and define the following VB program for the button using VB for applications: Private Sub CommandButton1_Click() Dim chan As Long // Initiate DDE on topic chan = DDEInitiate("LNSDDE", "myNetwork1.Subsystem 1.MT") DDEPoke chan, "Device 1.msg_out", Range("A3") DDETerminate (chan) End Sub 5) Enter "11" in cell "A3" and hit the button "CommandButton1" and you should see the value "11.00...." which is the value send to the device written written in cell "A2" and the msg returned by the NC application in cell "A1" which should be "11,5" (code = 11, data[0] = 5) 6) Enter "12" in cell "A3" and hit the button "CommandButton1" and you should see the value "12.00...." which is the value send to the device written in cell "A2" and the msg returned by the NC application in cell "A1" which should be "12,6" (code = 12, data[0] = 6) 7) If you enter "13" in cell "A3" and hit the button "CommandButton1" then you should not see any update of cell "A1" and "A2"

liudingqiu

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 6回
  • 年度积分:0
  • 历史总积分:6
  • 注册:2002年4月01日
发表于:2003-02-19 10:41:00
6楼
能不能给我一份? liudingqiu@sohu.com

ayong

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 7回
  • 年度积分:0
  • 历史总积分:12
  • 注册:2002年12月14日
发表于:2003-03-23 09:03:00
7楼
能不能给我一份? wsykds858@sohu.com

yxg

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 2回
  • 年度积分:0
  • 历史总积分:55
  • 注册:2002年8月09日
发表于:2003-03-27 09:28:00
8楼
我的下一个项目用lonworks,希望得到演示和相关资料。 多谢! yixuguang@infohold.com.cn

johnz

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 2回
  • 年度积分:0
  • 历史总积分:62
  • 注册:2003年3月26日
发表于:2003-03-27 13:54:00
9楼
能给我一份吗? sxnlink@vip.sina.com

http://www.gongkong.com/tech/detail.asp?ID=17990

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 2回
  • 年度积分:0
  • 历史总积分:5
  • 注册:2003年3月28日
发表于:2003-03-28 09:35:00
10楼
众里寻它千百度,lonworks居然在此处。 鄙人正在开发一项工程,需要用到lonworks,请您一定为我提供:《提供 LNS DDE Server 2.1演示版》及相关资料的获得途径。 非常感谢!

gongkongedit

  • 精华:1099帖
  • 求助:0帖
  • 帖子:14392帖 | 54470回
  • 年度积分:0
  • 历史总积分:622
  • 注册:2008年9月08日
发表于:2003-03-28 15:20:00
11楼
没有问题,免费(可现场)提供项目集成技术支持。欢迎进一步联系。 Email:lonworks@gongkong.com Mobile:13611266795

http://www.gongkong.com/tech/detail.asp?ID=17990

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 2回
  • 年度积分:0
  • 历史总积分:5
  • 注册:2003年3月28日
发表于:2003-03-28 16:05:00
12楼
很对不起,我很愚钝,还是没能得到《LNS DDE Server 2.1演示版》请您明示!

johnz

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 2回
  • 年度积分:0
  • 历史总积分:62
  • 注册:2003年3月26日
发表于:2003-03-28 16:24:00
13楼
我看到过 lonworks 在远程监控中的应用,但不甚了解,情予以明示

gongkongedit

  • 精华:1099帖
  • 求助:0帖
  • 帖子:14392帖 | 54470回
  • 年度积分:0
  • 历史总积分:622
  • 注册:2008年9月08日
发表于:2003-03-31 10:28:00
14楼
我是海事大学的,正在搞lonwork , 刚起步,希望能得到《LNS DDE Server 2.1演示版>> ,万分感谢!!!!!!!!!! email : peng0305@dlmu.edu.cn

kxa406

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 1回
  • 年度积分:0
  • 历史总积分:7
  • 注册:2002年9月08日
发表于:2003-04-27 12:46:00
15楼
我正在进行lonworks的研究,在下一个项目里要用到。迫切希望能得到《LNS DDE Server 2.1演示版>> ,非常感谢!   kxa_406@tom.com

gongkongedit

  • 精华:1099帖
  • 求助:0帖
  • 帖子:14392帖 | 54470回
  • 年度积分:0
  • 历史总积分:622
  • 注册:2008年9月08日
发表于:2003-04-27 20:16:00
16楼
非常感谢! nanjingyty@sohu.com

忘忧草

  • 精华:0帖
  • 求助:0帖
  • 帖子:11帖 | 87回
  • 年度积分:0
  • 历史总积分:172
  • 注册:2001年12月28日
发表于:2003-05-04 08:31:00
17楼
哎。

gongkongedit

  • 精华:1099帖
  • 求助:0帖
  • 帖子:14392帖 | 54470回
  • 年度积分:0
  • 历史总积分:622
  • 注册:2008年9月08日
发表于:2003-05-12 15:32:00
18楼
请给我一份,多谢! xingsha99@tom.com

天蓝

  • 精华:0帖
  • 求助:0帖
  • 帖子:17帖 | 7回
  • 年度积分:0
  • 历史总积分:58
  • 注册:2003年2月19日
发表于:2003-05-13 09:17:00
19楼
衣老师: 麻烦请给我也发我一份《LNS DDE Server 2.1演示版>> 。还有请教一下, DDE Server是否对网络变量和报文都可以实现?

沙漠海

  • 精华:0帖
  • 求助:0帖
  • 帖子:0帖 | 7回
  • 年度积分:0
  • 历史总积分:108
  • 注册:2003年4月01日
发表于:2003-05-13 21:20:00
20楼
准备上手LONWORKS,硬件还没有买,先看看软件 我也要一份,谢谢了 renqi78@sohu.com

热门招聘
相关主题

官方公众号

智造工程师
    首页 上一页 1 2 下一页 尾页