-
PID-program(2)
说明: 拥有倾角环和位置环的PID控制倒立摆,每个倒立摆不同,所以参数未测定,需自行测定(PID control inverted pendulum with inclination ring and position ring, each inverted pendulum is different, so the parameters are not determined, and need to be determined by oneself.)
- 2020-06-22 05:40:02下载
- 积分:1
-
实现两个四层电梯同时控制,有开门、关门、报警功能
实现两个四层电梯同时控制,有开门、关门、报警功能-To achieve simultaneous control of two four-story elevator, there are open, closed, alarm function
- 2022-01-21 03:30:34下载
- 积分:1
-
RTC
基于MSP430F5的液晶显示及RTC程序(Based on the liquid crystal display, and RTC MSP430F5 procedures)
- 2013-09-25 18:07:27下载
- 积分:1
-
Q-GDW集中器下行本地接口协议调试软件
说明: 用于电力集中器的本地下行调试,接口调试,串口波特率,抄表设置(Local Downlink Debugging for Power Concentrator)
- 2020-06-21 06:00:02下载
- 积分:1
-
MATLAB实现灰度预测模型的源代码
说明: 灰度关联预测模型MATLAB源代码实现灰度关联预测模型方法。(Realization of Gray Level Association Prediction Model by MATLAB)
- 2019-03-08 18:33:28下载
- 积分:1
-
arsivtakip1.06.01
erp software for test
- 2019-04-02 14:04:09下载
- 积分:1
-
vhdl-cordic-atan
说明: ATAN VHDL iplementation
- 2019-03-23 22:24:27下载
- 积分:1
-
VB建立三角形网,继续土方量计算等!能连接到Auto cad
VB建立三角形网,继续土方量计算等!能连接到Auto cad-triangular VB established networks continue earthwork calculations! Can be connected to the Auto marker
- 2022-02-07 09:10:01下载
- 积分:1
-
uCOS-II原理 任哲--PPT
说明: 嵌入式实时操作系统μC/OS-II讲解(ppt) 任 哲
一.计算机操作系统的基本概念
二.操作系统中常用的数据结构
三.并发操作系统的概念
四.任务的要素
五. μC/OS-II的任务管理(任务调度)
六. μC/OS-II的中断和时钟
七. μC/OS-II的任务的同步与通信
八. μC/OS-II的存储管理
九.硬件抽象层和测试台(Embedded real-time operating system/os-ii presentation (PPT
The basic concept of computer operating system
Two. The commonly used data structure in the operating system
Iii. Concept of concurrent operating system
Four, the elements of the task
5. Task management of C/ os-ii (task scheduling)
Six. C/ os-ii interrupts and clocks
7. Synchronization and communication of C/ os-ii tasks
8. C/ os-ii storage management
Hardware abstraction layer and test bed)
- 2020-05-04 20:53:34下载
- 积分:1
-
C#修改Windows电脑的计算机名
Visual C#修改计算机名,修改电脑名称为另一个自定义的新名称,代码较简单,这里不多做介绍了,运行界面如示例截图所示。以下为核心部分代码,先睹为快,完整源码项目请下载:
[DllImport("kernel32.dll")]
private static extern int SetComputerName(string ipComputerName);//重写API函数
private void Frm_Main_Load(object sender, EventArgs e)
{
Computer computer = new Computer();//创建计算机对象
textBox1.Text = computer.Name;//显示计算机名称
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox2.Text == "")//判断计算机名称是否为空
{
MessageBox.Show("计算机名称不能为空!");
}
else
{
SetComputerName(textBox2.Text);//修改计算机名称
MessageBox.Show("计算机名称修改成功,请重新启动计算机使之生效!");
}
}
- 2022-03-07 15:38:03下载
- 积分:1