-
红外遥控码形检测,通过串口发送数据到PC机
9600,n,8,1,每位+1表示14us...
红外遥控码形检测,通过串口发送数据到PC机
9600,n,8,1,每位+1表示14us-Infrared remote control code type detection, through the serial port to send data to the PC-9600, n, 8,1, each+1 that 14us
- 2022-03-14 23:39:24下载
- 积分:1
-
在DOS下固定的位置显示时间
在DOS下固定的位置显示时间-DOS in a fixed location time
- 2022-09-19 06:50:03下载
- 积分:1
-
use assembler in MCS
利用汇编程序在51单片机上实现了音乐播放器的功能,希望能给大家提供帮助.-use assembler in MCS-51 achieved a music player function, we can hope for help.
- 2022-03-21 08:23:11下载
- 积分:1
-
51 compilation prepared by CRC
用51汇编编写的CRC-4校验程序,生成多项式g(x) = x4 + x + 1, 非常适合数据量不大的场合.-51 compilation prepared by CRC-4 checksum procedure to generate the polynomial g (x) = x4+ X+ 1, the amount of data is not very suitable for the occasion.
- 2022-06-30 13:41:17下载
- 积分:1
-
The code is written in BASCOM AVR compiler. for ATmega16 microcontroller. For fa...
The code is written in BASCOM AVR compiler. for ATmega16 microcontroller. For fastest finger first project-The code is written in BASCOM AVR compiler. for ATmega16 microcontroller. For fastest finger first project...
- 2022-02-20 20:05:17下载
- 积分:1
-
有限元分析设计轴承软件,一般采用ANSYS去进行分析应力等作用...
有限元分析设计轴承软件,一般采用ANSYS去进行分析应力等作用-finite element analysis software design bearings, normally used to ANSYS stress analysis, etc.
- 2022-08-03 17:25:04下载
- 积分:1
-
这是一个关于嵌入试开发的简单例子,大家可以参考一下,为以后的学习打基础...
这是一个关于嵌入试开发的简单例子,大家可以参考一下,为以后的学习打基础-This is a test of embedded development simple example, we can take a look to the future to build up the foundation of learning
- 2022-05-07 06:53:39下载
- 积分:1
-
win32 pe 文件编程:文件加密.rar
win32 pe 文件编程:文件加密.rar
-programming document : document encryption. Rar
- 2022-11-13 01:05:03下载
- 积分:1
-
遥控解码汇编程序, 遥控解码汇编程序
遥控解码汇编程序, 遥控解码汇编程序-Assembler decoder remote control, remote control decoder assembler
- 2023-05-08 10:10:02下载
- 积分:1
-
Python对文件IO操作
filePath="c:/test/tt.txt"
#从文件中读取信息
f=open(filePath, "r")#运用读的方式打开文件,
for line in f: #每次读取文件的一行内容
print(line)
f.close()
#向文件中写入信息
f=open(filePath, "a") #这里有两种方式:第一种是以w的形式,它写入时将会清空以前的数据然后再写入数据,第二种是以a的形式,它以追加的形式写入数据
f.write("我开始向文件中写入信息
")
f.writelines("我已经向文件写入了信息")
f.close()
- 2022-03-02 22:46:33下载
- 积分:1