-
2410下一个最简单的程序,可以很轻松的由51过渡到ARM
2410下一个最简单的程序,可以很轻松的由51过渡到ARM-2410 the next most simple procedure that can easily transition to the ARM by 51
- 2022-07-14 20:19:07下载
- 积分:1
-
Clock Display Program written in 892051 assembly language
892051用的显示时钟程序,对汇编学习有用。-Clock Display Program written in 892051 assembly language
- 2022-08-13 01:14:11下载
- 积分:1
-
此用汇编写的抢答器的源代码,是我们微机原理的课程设计
此用汇编写的抢答器的源代码,是我们微机原理的课程设计-This written Answer with the compilation
- 2022-02-13 06:46:41下载
- 积分:1
-
可以看一看源代码 与大家共享
可以看一看源代码 与大家共享-look at the source code and share
- 2022-03-16 06:17:19下载
- 积分:1
-
这是一个无线遥控发射芯片的解码源程序,希望大家借鉴使用...
这是一个无线遥控发射芯片的解码源程序,希望大家借鉴使用-This is a wireless remote control to launch source decoder chips, I hope everyone from the use of
- 2022-05-14 15:49:30下载
- 积分:1
-
PIC源程序头文件
PIC源程序头文件-PIC source files
- 2022-07-09 23:56:03下载
- 积分:1
-
C8051F350采样滤波汇编程序,请大家参考指教,应该有所帮助,这个片子最竟很热,啊...
C8051F350采样滤波汇编程序,请大家参考指教,应该有所帮助,这个片子最竟很热,啊-C8051F350 sampling filter assembler, please refer to U.S. advice, should be helpful, this film has the most hot, ah
- 2022-03-23 10:26:42下载
- 积分:1
-
写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度...
写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度-Writing a function, and the length of a string, in the main function in the input string and output its length
- 2022-05-29 01:37:52下载
- 积分:1
-
这个程序真的很有用,它可以告诉你怎样来运用单片机,不仅仅是写一个程序而已,相信你看了之后一定收获不小!...
这个程序真的很有用,它可以告诉你怎样来运用单片机,不仅仅是写一个程序而已,相信你看了之后一定收获不小!-this procedure is really useful, it can tell you how to use the microcontroller, is not just a procedure adopted, I believe you will certainly learned a lot after reading!
- 2022-09-25 07:25:03下载
- 积分: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