-
nRF24L01
nRF24L01示例程序,官方的,试验通过。(nRF24L01 sample program, the official trial through.)
- 2010-06-11 21:36:03下载
- 积分:1
-
With a clock procedure which 8279 write, has the circuit diagram, has any not go...
用8279写的一个时钟程序,有电路图,有什么不好之处请指教!-With a clock procedure which 8279 write, has the circuit diagram, has any not good place please to advise!
- 2023-03-08 02:35:03下载
- 积分:1
-
DEEC.matble
分簇协议的改进协议DEEC的matlab代码,绝对正确,大家可以下载试试,对学习WSN路由协议很有帮助。(Improved clustering protocol agreement DEEC matlab code, absolutely correct, you can download to try, to learn helpful WSN routing protocol.)
- 2014-01-20 17:29:25下载
- 积分:1
-
VA_X[1].1727
Visual Assist X 10.5.1727.0 (
- 2020-06-25 23:20:02下载
- 积分:1
-
ZStack-CC2530-2.5.1a-BMP180
说明: 基于zigbee技术CC2530 开发采集大气压(Development and Collection of Atmospheric Pressure Based on Zigbee Technology CC2530)
- 2020-06-22 22:00:01下载
- 积分:1
-
LUA
对刚接触LUA的人很有帮助,讲解的都是Lua基础东西。(Helpful to explain the are Lua basis, something new to LUA.)
- 2012-06-06 21:54:41下载
- 积分:1
-
电机位置闭环控制(代码详细注释,F1寄存器版本)
STM32F1、F4电机PWM调速及PID速度闭环控制(PWM Speed Regulation and PID Speed Closed-loop Control of STM32F1 and F4 Motors)
- 2020-06-22 06:40:01下载
- 积分:1
-
一个C语言编写的推箱子游戏源代码
一个C语言编写的推箱子游戏源代码,本游戏是字符模式的,请不要在中文dos下运行。本游戏在TURBO C下调试通过 。
- 2022-08-09 10:26:32下载
- 积分:1
-
digital-watermark-
基于傅里叶变换的数字水印嵌入技术,可用于图像加密领域。(Based on the Fourier transform of the digital watermark technology
)
- 2012-02-28 16:11:23下载
- 积分:1
-
C#实现Socket通讯Demo
c#通过Socket实现图片、文件和文字的通讯。
private void button1_Click(object sender, EventArgs e)
{
try
{
server = TxStart.startServer(int.Parse(textBox_port.Text));
server.AcceptString = new TxDelegate(acceptString);
server.AcceptByte = new TxDelegate(acceptBytes);
server.Connect = new TxDelegate(connect);
server.dateSuccess = new TxDelegate(dateSuccess);
server.Disconnection = new TxDelegate(disconnection);
server.EngineClose = new TxDelegate(engineClose);
server.EngineLost = new TxDelegate(engineLost);
//server.BufferSize=12048;
//server.FileLog = "C:\test.txt";
server.StartEngine();
this.button1.Enabled = false;
this.button2.Enabled = true;
this.button3.Enabled = true;
}
catch (Exception Ex) { MessageBox.Show(Ex.Message); }
}
///
/// 发送按钮
///
///
///
private void button2_Click(object sender, EventArgs e)
{
try
{
IPEndPoint client = (IPEndPoint)this.comboBox1.SelectedItem;
if (client == null)
{
MessageBox.Show("没有选中任何在线客户端!");
return;
}
if (!this.server.clientCheck(client))
{
MessageBox.Show("目标客户端不在线!");
return;
}
server.sendMessage(client, textBox_msg.Text);
}
catch (Exception Ex) { MessageBox.Show(Ex.Message); }
}
///
/// 下面显示的
///
///
///
private void show(IPEndPoint ipEndPoint, string str)
{
label_zt.Text = ipEndPoint.ToString() ":" str;
label_all.Text = "当前在线人数:" this.server.ClientNumber.ToString();
}
///
/// 当组合框按下的时候
///
///
///
private void comboBox1_DropDown_1(object sender, EventArgs e)
{
try
{
List list = this.server.ClientAll;
this.comboBox1.DataSource = list;
}
catch { }
}
///
/// 关闭客户端的按钮
///
///
///
private void button3_Click_1(object sender, EventArgs e)
{
IPEndPoint client = (IPEndPoint)this.comboBox1.SelectedItem;
if (client == null)
{
MessageBox.Show("没有选中任何在线客户端!");
return;
}
if (!this.server.clientCheck(client))
{
MessageBox.Show("目标客户端不在线!");
return;
}
server.clientClose(client);
}
#endregion
- 2021-08-22 00:31:02下载
- 积分:1