资源简介
该文件是“六足仿生机器人”的全套资料,包含论文、PPT、PCB、代码、路由固件等大量资料
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WifiVideo
{
public partial class Config : Form
{
public Config()
{
InitializeComponent();
}
public string FileName; //INI文件名
//声明读写INI文件的API函数
[DllImport(“kernel32“)]
private static extern bool WritePrivateProfileString(string section string key string val string filePath);
[DllImport(“kernel32“)]
private static extern int GetPrivateProfileString(string section string key string def byte[] retVal int size string filePath);
private void Config_Load(object sender EventArgs e)
{
GetIni();
}
private void button1_Click(object sender EventArgs e)
{
WriteIni(“VideoUrl““videourl“this.textBoxVideo.Text);
WriteIni(“ControlUrl“ “controlUrl“ this.textControlURL.Text);
WriteIni(“ControlPort“ “controlPort“ this.textBoxControlPort.Text);
WriteIni(“ControlCommand“ “CMD_Forward“ this.txtForward.Text);
WriteIni(“ControlCommand“ “CMD_Backward“ this.txtBackward.Text);
WriteIni(“ControlCommand“ “CMD_TurnLeft“ this.txtLeft.Text);
WriteIni(“ControlCommand“ “CMD_TurnRight“ this.txtRight.Text);
WriteIni(“ControlCommand“ “CMD_Stop“ this.txtStop.Text);
WriteIni(“ControlCommand“ “CMD_EngineUp“ this.txtEngineUp.Text);
WriteIni(“ControlCommand“ “CMD_EngineDown“ this.txtEngineDown.Text);
WriteIni(“ControlCommand“ “CMD_textLightsOn“ this.textLightsOn.Text);
WriteIni(“ControlCommand“ “CMD_textLightsOff“ this.textLightsOff.Text);
MessageBox.Show(“配置成功!请重启程序以使配置生效。“ “配置信息“ MessageBoxButtons.OK MessageBoxIcon.Information);
this.Close();
}
//写INI文件
public void WriteIni(string Section string Ident string Value)
{
if (!WritePrivateProfileString(Section Ident Value FileName))
{
throw (new ApplicationException(“写入配置文件出错“));
}
}
//读取INI文件指定
public string ReadIni(string Section string Ident string Default)
{
Byte[] Buffer = new Byte[65535];
int bufLen = GetPrivateProfileString(Section Ident Default Buffer Buffer.GetUpperBound(0) FileName);
//必须设定0(系统默认的代码页)的编码方式,否则无法支持中文
string s = Encoding.GetEncoding(0).GetString(Buffer);
s = s.Substring(0 bufLen);
return s.Trim();
}
private void GetIni()
{
FileName = Application.StartupPath + “\\Config.ini“;
this.textBoxVideo.Text = ReadIni(“VideoUrl“
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-01-14 17:20 六足仿生机器人\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\obj\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\obj\x86\
目录 0 2014-03-20 21:55 六足仿生机器人\WIFIROBOT\WifRobot\obj\x86\Debug\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\
文件 866 2011-09-28 22:12 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot.sln
文件 27648 2012-05-24 07:35 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot.suo
文件 54784 2013-08-05 15:24 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot.v11.suo
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\
文件 86 2011-10-05 22:28 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debugconfig.ini
文件 303 2012-02-22 11:38 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\Config.ini
文件 11600 2011-09-28 22:04 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\WifiVideo.vshost.exe
文件 490 2010-03-17 22:39 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\WifiVideo.vshost.exe.manifest
文件 533504 2013-08-05 15:02 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\WifRobot.exe
文件 46592 2013-08-05 15:02 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\WifRobot.pdb
文件 22984 2013-08-05 15:03 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\WifRobot.vshost.exe
文件 490 2012-06-06 02:06 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Debug\WifRobot.vshost.exe.manifest
目录 0 2014-03-20 21:55 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\bin\Release\
文件 4353 2012-02-22 11:34 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\Config.cs
文件 17265 2012-02-22 11:34 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\Config.Designer.cs
文件 5817 2012-02-22 11:34 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\Config.resx
文件 8562 2012-02-22 11:40 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\Form1.cs
文件 12185 2012-02-22 11:37 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\Form1.Designer.cs
文件 108159 2012-02-22 11:37 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\Form1.resx
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\obj\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\obj\x86\
目录 0 2018-06-23 16:31 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\obj\x86\Debug\
文件 219 2012-01-22 14:34 六足仿生机器人\WIFIROBOT\WifRobot\WifRobot\obj\x86\Debug\Config.ini
............此处省略317个文件信息
相关资源
- 安川机器人操作手册
- 纳英特机器人仿真系统2013
- UR系列机器人手册及培训资料
- 搬运小车车 super.rar
- EPLAN P8 机器人生产线案例电气图纸
- KUKA C2机器人使用手册
- nao 机器人大王叫我来巡山舞蹈程序
- 电饭锅单片机控制系统模拟仿真
- 基于单片机的灭火机器人
- NAO机器人系列舞蹈
- 六自由度并联平台
- 机器人硬件手册.rar
- 基于51单片机的GSM短信防盗报警系统
- 乐高ev3机器人设计
- 机器人学:运动学、动力学与控制 宋
- 机器人学导论 原书 第3版 高清 中文版
- 机器人学导论 原书第3版 美HLHN J CRA
- 选课系统毕设
- fanuc六轴机器人3d模型 stp档
- 机器人学导论高清第3版John著
- 房产中介管理系统毕设,以调试可运
- hiwin 机器人操作与编程手册
- 机器人学导论原书第3版.pdf
- 01 Scratch3.0课程10--20课.rar
- Scratch3.0课程前十课课.zip
- OTC机器人设定使用说明书
- 马尔科夫决策过程,强化学习的一种
- ur机器人文档资料
- 发那科机器人样本
- 机器人学 - 建模、规划与控制.pdf
评论
共有 条评论