资源简介
ABB机器人PC SDK二次开发,语音控制机器人运动
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Speech.Recognition;
using ABB.Robotics.Controllers;
using ABB.Robotics.Controllers.Discovery;
using ABB.Robotics.Controllers.RapidDomain;
using ABB.Robotics.Controllers.IOSystemDomain;
using ABB.Robotics.Controllers.MotionDomain;
namespace WindowsFormsApplication2
{using System.Speech.Recognition;
public partial class Form1 : Form
{
delegate void SetTextCallback(string text);
private SpeechRecognitionEngine SRE = new SpeechRecognitionEngine();
private NetworkScanner scanner = null;
private Controller controller = null;
// private Task[] tasks = null;
private NetworkWatcher networkwatcher = null;
// Controller acontroller = new Controller();
Mastership master = null;
void HandleFoundEvent(object sender NetworkWatcherEventArgs e)
{
this.Invoke(new EventHandler(AddControllerToListView) new object[] { this e });
}
private void AddControllerToListView(object sender NetworkWatcherEventArgs e)
{
ControllerInfo controllerInfo = e.Controller; ListViewItem item
= new ListViewItem(controllerInfo.IPAddress.ToString());
item.SubItems.Add(controllerInfo.Id); item.SubItems.Add(controllerInfo.Availability.ToString()); item.SubItems.Add(controllerInfo.IsVirtual.ToString()); item.SubItems.Add(controllerInfo.SystemName); item.SubItems.Add(controllerInfo.Version.ToString()); item.SubItems.Add(controllerInfo.ControllerName); this.listView1.Items.Add(item); item.Tag
= controllerInfo;
}
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
RapidData rd = controller.Rapid.GetRapidData(“T_ROB1“ “user“ “reg6“);
ABB.Robotics.Controllers.RapidDomain.Num rdreg1 = (ABB.Robotics.Controllers.RapidDomain.Num)rd.Value;
textBox1.Text = rdreg1.ToString();
}
private void Form1_Load(object sender EventArgs e)
{
this.scanner = new NetworkScanner();
this.scanner.Scan();
ControllerInfoCollection controllers = scanner.Controllers;
ListViewItem item = null;
foreach (ControllerInfo controllerInfo in controllers)
{
item = new ListViewItem(controllerInfo.IPAddress.ToString());
item.SubItems.Add(controllerInfo.Id);
item.SubItems.Add(controllerInfo.Availability.ToString());
item.SubItems.Add(controllerInfo.IsVirtual.ToString());
item.SubItems.Add(controllerInfo.SystemName)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-04-30 15:02 语音控制机器人\
文件 335038 2019-04-19 12:24 语音控制机器人\1600_606.rspag
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\
文件 187 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\App.config
文件 11352 2018-06-05 12:37 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Form1.Designer.cs
文件 15599 2018-06-05 13:45 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Form1.cs
文件 5817 2018-06-05 12:37 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Form1.resx
文件 536 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Program.cs
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Properties\
文件 1372 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Properties\AssemblyInfo.cs
文件 2900 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Properties\Resources.Designer.cs
文件 5612 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Properties\Resources.resx
文件 1111 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Properties\Settings.Designer.cs
文件 249 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\Properties\Settings.settings
文件 4071 2018-06-04 12:41 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\WindowsFormsApplication2.csproj
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\
文件 548864 2014-11-27 10:14 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\ABB.Robotics.Controllers.PC.dll
文件 1099546 2014-11-27 10:14 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\ABB.Robotics.Controllers.PC.xm
文件 238592 2014-11-27 10:09 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\RobotStudio.Services.RobApi.Desktop.dll
文件 306688 2014-11-27 10:09 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\RobotStudio.Services.RobApi.dll
文件 18944 2018-06-05 12:37 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.exe
文件 187 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.exe.config
文件 48640 2018-06-05 12:37 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.pdb
文件 24224 2018-06-05 13:49 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe
文件 187 2017-10-29 14:46 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe.config
文件 490 2015-06-05 04:48 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe.manifest
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\obj\
目录 0 2019-04-30 14:59 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\obj\Debug\
文件 1453 2017-10-29 16:29 语音控制机器人\WindowsFormsApplication2\WindowsFormsApplication2\obj\Debug\DesignTimeResolveAssemblyReferences.cache
............此处省略16个文件信息
- 上一篇:浙江大学2018级计算机科学与技术专业培养方案
- 下一篇:RK DDR测试工具
相关资源
- SI4463完整DEMO板原理、PCB
- 闭合附和导线计算程序.zip
- PClint错误码大全.doc
- 如何将CST微带模型导入Altium Designer绘
- windows form 窗体的GDI+使用,根据数据库
- OPC Core Components Redistributable (x64).
- 《MIT JOS Lab1: Booting a PC》实验代码
- xl6009升压模块电路原理图+PCB图
- 辩论赛计时器
- Windows10+VS2015+PCL1.8.1配置
- 电喷摩托车用ECU MT05控制软件 PCHUD
- APM2.5飞控硬件PCB图protel DXP版本的哦
- 基于51单片机的自动窗帘程序和PCB
- 常用的PCB封装altium designer绝对好用!
- kinect同时获取深度与彩色图片并保存
- STC89C52 开发板PCB电路图与配套程
- PASCAL语言教程_完整版
- 各类板卡的物理尺寸规范
- PROTEL 99SE的具体包括原理图和PCB图
- PCM音频采集与播放
- PCA人脸识别
- Altium PCB封装库
- Altera FPGA在线重配置实现笔记
- OMAP-l138 核心板电路原理图,PCB版图,
-
自制ST_li
nk_V2所有资料 - DCPcrypt v2 Beta (加密解密控件)
- SharpCompress 解压缩ziprar文件解决中文乱
- 最全的PCB布线规则和经验汇总
- 多功能智能小车原理图及PCB文件
- 51心形流水灯原理图PCB及程序
评论
共有 条评论