登录
首页 » C# » feiyuecontrol

feiyuecontrol

于 2017-10-12 发布 文件大小:57KB
0 121
下载积分: 1 下载次数: 4

代码说明:

  支持PELCO—D协议,设置角度云台自动巡航,用于小测试,支持大部分云台。(Support PELCO - D protocol, set angle, pan head, automatic cruise, for small test, support most ptz.)

文件列表:

feiyuecontrol\feiyuecontrol\App.config
feiyuecontrol\feiyuecontrol\bin\Debug\feiyuecontrol.exe
feiyuecontrol\feiyuecontrol\bin\Debug\feiyuecontrol.exe.config
feiyuecontrol\feiyuecontrol\bin\Debug\feiyuecontrol.pdb
feiyuecontrol\feiyuecontrol\bin\Debug\feiyuecontrol.vshost.exe
feiyuecontrol\feiyuecontrol\bin\Debug\feiyuecontrol.vshost.exe.config
feiyuecontrol\feiyuecontrol\bin\Debug\feiyuecontrol.vshost.exe.manifest
feiyuecontrol\feiyuecontrol\feiyuecontrol.csproj
feiyuecontrol\feiyuecontrol\Form1.cs
feiyuecontrol\feiyuecontrol\Form1.Designer.cs
feiyuecontrol\feiyuecontrol\Form1.resx
feiyuecontrol\feiyuecontrol\obj\Debug\DesignTimeResolveAssemblyReferences.cache
feiyuecontrol\feiyuecontrol\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
feiyuecontrol\feiyuecontrol\obj\Debug\feiyuecontrol.csproj.FileListAbsolute.txt
feiyuecontrol\feiyuecontrol\obj\Debug\feiyuecontrol.csproj.GenerateResource.Cache
feiyuecontrol\feiyuecontrol\obj\Debug\feiyuecontrol.exe
feiyuecontrol\feiyuecontrol\obj\Debug\feiyuecontrol.Form1.resources
feiyuecontrol\feiyuecontrol\obj\Debug\feiyuecontrol.pdb
feiyuecontrol\feiyuecontrol\obj\Debug\feiyuecontrol.Properties.Resources.resources
feiyuecontrol\feiyuecontrol\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
feiyuecontrol\feiyuecontrol\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
feiyuecontrol\feiyuecontrol\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
feiyuecontrol\feiyuecontrol\Program.cs
feiyuecontrol\feiyuecontrol\Properties\AssemblyInfo.cs
feiyuecontrol\feiyuecontrol\Properties\Resources.Designer.cs
feiyuecontrol\feiyuecontrol\Properties\Resources.resx
feiyuecontrol\feiyuecontrol\Properties\Settings.Designer.cs
feiyuecontrol\feiyuecontrol\Properties\Settings.settings
feiyuecontrol\feiyuecontrol.sln
feiyuecontrol\feiyuecontrol.v12.suo
feiyuecontrol\feiyuecontrol\obj\Debug\TempPE
feiyuecontrol\feiyuecontrol\bin\Debug
feiyuecontrol\feiyuecontrol\obj\Debug
feiyuecontrol\feiyuecontrol\bin
feiyuecontrol\feiyuecontrol\obj
feiyuecontrol\feiyuecontrol\Properties
feiyuecontrol\feiyuecontrol
feiyuecontrol

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • DDSRF-PLL
    本文论述了在控制的一个重要方面电网连接的电源转换器,即检测基波正序分量的电网电压不平衡和扭曲的条件下。明确地,提出了一种积极的基于一种新的序列检测器双同步坐标系的解耦锁相环(双dq–PLL),完全消除了检测误差传统的同步参考框架(SRF–锁相环PLL)。(This paper deals with an important aspect in the control of grid connected power converters, that is, detecting the fundamental positive sequence components of the grid under unbalanced and distorted voltage conditions. Clearly, a positive decoupling PLL a new sequence detector based on dual synchronous coordinate system (double DQ - PLL), the complete elimination of the traditional synchronous reference frame detection error (SRF - PLL PLL).)
    2017-09-15 11:12:09下载
    积分:1
  • 全国1:400万shp数据 4级河流数据
    说明:  shapefile数据,全国范围四级河流数据(river data shapefile)
    2020-08-29 12:58:17下载
    积分:1
  • 这是一个粒子群算法,比较简单,已经在运行过了,对于初学者比较好用。...
    这是一个粒子群算法,比较简单,已经在运行过了,对于初学者比较好用。-This is a particle swarm algorithm is relatively simple, has been run over, and relatively easy to use for beginners.
    2022-06-14 03:27:10下载
    积分:1
  • account
    设计一个名为Account类。这个类包含: (1)一个名为id的int型数据域,表示账户的身份号(默认值为0)。 (2)一个名为balance的double型数据域,表示账户余额(默认值为0)。 (3)一个名为annualInterestRate的double型数据域,保存当前年利率(默认值为0)。 (4)一个无实参构造函数,创建一个默认账户。 (5)id、balance和annualInterestRate的访问器和更改器函数。 (6)一个名为getMonthlyInterestRate()的函数,返回月利率。 (7)一个名为withDraw的函数,从账户中支取指定金额。 (8)一个名为deposit的函数,向账户中存入指定金额。 画出类的UML图,实现类。编写一个测试程序,它创建一个Account对象,其ID为1122,账户余额为20000,年利率为4.5 。使用withDraw函数取出2500美元,使用deposit函数存入3000美元,然后输出账户余额、月利率和账户创建时间。(Design a class named Account. This class includes: (a) a named data type int id field that indicates the account identification number (default is 0). (2) a double-called balance of data fields, which means that the account balance (default is 0). (3) a double type named annualInterestRate of data fields, save the current interest rate (default is 0). (4) a no-argument constructor creates a default account. (5) id, balance and annualInterestRate access control and change control functions. (6) a named getMonthlyInterestRate () function returns a monthly rate. (7) a function named withDraw, drawn from the account specified amount. (8) a function called deposit to the account into a designated amount. Draw a UML class diagram, the implementation class. Write a test program that creates an Account object, its ID is 1122, the account balance is 20,000, an interest rate of 4.5 . Use withDraw function out $ 2,500, $ 3,000 deposit with deposit function, and then outputs the account balance, m)
    2013-06-01 13:21:54下载
    积分:1
  • 37个超炫网站后台框架(源码)
    分享37个超炫网站后台的源码,根据该源码为模板制作网页(Share 37 stunning website background source, according to the source code for web page template)
    2017-09-08 17:50:56下载
    积分:1
  • Adams_入门详解与实例 第二版李增刚
    机械仿真建模,可用于实现真实模型的逼真建模,便于与MATLAB展开联合仿真(Mechanical simulation modeling)
    2017-06-20 06:48:11下载
    积分:1
  • Mainly introduce the computer assembly and maintenance of knowledge, some simple...
    主要介绍了电脑的组装与维护知识,一些简单电脑应用技巧-Mainly introduce the computer assembly and maintenance of knowledge, some simple computer application skills
    2023-02-25 00:35:04下载
    积分:1
  • 马云阿里巴巴国际站英文多级产品导航菜单【荐】
    马云阿里巴巴国际站英文多级产品导航菜单【荐】,菜单整体是向右展开、折叠的,大网站的菜单效果就是不一样,虽然看上去简洁,但却挺美观,给人的感觉也就不一样,搞前端设计的朋友,多学习,多借鉴一些国外作品,对开据你的前端设计思路有帮助。
    2022-03-26 14:07:18下载
    积分:1
  • 03120104零件切割问题
    说明:  本程序可以实现零件切割问题. 其中的文件均得放在一个目录下(this procedure can be achieved parts mutilation. The documents placed in a directory)
    2005-12-03 03:35:52下载
    积分:1
  • FPGA代码调试故障记录
    FPGA代码调试故障,辛苦积累,值得下载。强烈推荐。(FPGA code debugging failure, hard accumulation, it is worth downloading. Strongly recommended.)
    2018-08-01 14:33:44下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载