-
motor control with pwm
motor control with pwm
- 2023-03-17 02:35:04下载
- 积分:1
-
rearrangement JiuGongTu the heuristic search algorithm
重排九宫问题的启发式搜索算法求解-rearrangement JiuGongTu the heuristic search algorithm
- 2023-05-16 06:20:03下载
- 积分:1
-
VB用户登录实例
使用说明书。vbdenglujianyijiemianbianchengshili(An instruction manual)
- 2020-06-19 04:40:01下载
- 积分:1
-
ansys k文件,模拟水下爆炸,非常有用,自己编写的
ansys k文件,模拟水下爆炸,非常有用,自己编写的-ansys k documents, simulation of underwater explosions, very useful, I have written
- 2023-07-22 02:50:03下载
- 积分:1
-
jiguangcar
激光小车引脚请自行修改我靠 还要我写多少字?(Laser trolley pin please modify how much I rely want me to write the word?)
- 2013-10-30 16:39:17下载
- 积分:1
-
信号的提取
说明: 1、SignalTap II Logic Analyzer使用方法;
2、掌握捕获条件的设置
3、学会硬件信号分析,了解硬件信号监视和软件调试的差异(1. How to use signaltap II logic analyzer;
2. Master the setting of capture conditions
3. Learn hardware signal analysis, understand the difference between hardware signal monitoring and software debugging)
- 2021-01-11 14:31:37下载
- 积分:1
-
shuziyouxi
在数独高手的规则是要将9个数字填入一个9个小九宫格组成的9×9格子里。使得每一行,每一列和每个小九宫格里都有1-9的数字,并且每个数字在它所在的行、列以及每个小九宫格里面都只出现唯一一次。(Sudoku expert in the rules is to fill a 9 digit composed of nine small squares 9 × 9 grid yard. So that each row, each column and each have 1-9 small squares in the figures, and each figure in its row, column, and each small squares appear only inside the only time.)
- 2013-11-13 13:54:04下载
- 积分:1
-
excel
说明: 使用python读取与写入excel文件代码示例(Reading excel file with Python)
- 2020-06-11 13:36:03下载
- 积分:1
-
Pt100 temperature sensor for the front
用作pT100温度传感器的前端电路,原理可以从网上搜索相关文章,谨此以期达到抛砖引玉的效果-Pt100 temperature sensor for the front-end circuit, the principle can be from the Internet search-related articles, start with these to achieve the effect of
- 2022-01-24 13:06:58下载
- 积分: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