-- Simple Robot Control Program -------------------------------------------------------------------------- -- Left is left IR sensor - 1=object to left -- Right is rigth IR sensor - 1=object to right -- Lmotor_dir 1=forward 0=reverse -- Rmotor_dir 1=forward 0=reverse -- Lmotor_speed 111=fast 000=slow -- Rmotor_speed 111=fast 000=slow
标签: Control Program Simple Robot
上传时间: 2013-11-27
上传用户:风之骄子
用8086,8255,8259和8254构造系统实现对指示灯控制。 8255的PA0,PA1,PA2的三位DIP开关,通过DIP开关的闭合状态决定接在 PB口上的八个指示灯之一闪烁。如PA2,PA1,PA0为000时,PB0上所接的指 示灯闪烁,其余灯熄灭。要求闪烁频率为每秒10次。设8259地址为20H和 21H,8255地址为60H~63H,8254地址为40H~43H,时钟频率为50KHz, 8259中断向量号为70H和71H.试设计硬件连接电路,填写中断向量表,编 写全部初始化程序,完成控制程序编写。
标签: 8086
上传时间: 2016-12-28
上传用户:skhlm
新闻 网页 贴吧 知道 MP3 图片 视频 帮助 | 高级搜索 把百度设为主页 百度一下,找到相关网页165篇,用时0.050秒 Book Switzerland Hotels .. HRS, Over 230,000 hotels worldwide, Real time prices and av.. www.HRS.com 中国Quick Book 速达软件 速达软件是全球最大的中小企业管理软件品牌Quickbooks家族的中.. www.shsuda.cn 上海索迪IBM大学生sql编程.. 政府授牌-索迪IBM封闭式软件实训基地,与千家IT企业签订人才服务.. www.hroso.com 上海it编程工程师培训 NII.. NIIT是全球领先的IT学习解决方案公司,拥有近500万注册学生及33.. www.sh-niit.cn java语言编程培训 首选上.. 上海达内外企软件工程师定向委培.近万名学员成功就业IBM,HP,华.. www.51tarena.com 上海游戏开发编程培训 高.. 上海游戏学院是一家致力于培养游戏开发与设计人才的专业机构.开.. www.gamfe.com 加工中心编程培训 大型数控机床培训基地,加工中心编程培训.本校凭承“优师资,严管.. www.tcskpx.com 上海php编程培训, 助您年.. 上海最早最大php编程培训中心,学费仅需付六成,可申请先就业后付.. www.wenhua.com 找tale book 源代码
上传时间: 2017-03-10
上传用户:2467478207
This is a source of 13.560MHz RFID card reader for TRH031M as ATMEGA8-16AU MPU. The title is 3Alogics TRH031M 13.56MHz RFID Reader V1.0. project : RFID Reader V2.0 Target : MEGA8-16AU Crystal: 16.000 Mhz Input : TRH031M RFID 13.56MHz Output : RS232C 115200,N,8,1 Compiler : ICC-AVR V6.26C // Pin configuration for ATMEGA8-16AU TQFP32 // #30 RXD <--- RXD (SP3232) // #31 TXD ---> TXD (SP3232) // #32 PD2/INT0 <--- INTR (TRH031M) // # 1 PD3/INT1 ---> RST (TRH031M) // # 2 PD4 ---> D4 (TRH031M) // # 9 PD5 ---> D5 (TRH031M) // #10 PD6 ---> D6 (TRH031M) // #11 PD7 ---> D7 (TRH031M) // #12 PB0 ---> D0 (TRH031M) // #13 PB1 ---> D1 (TRH031M) // #14 PB2 ---> D2 (TRH031M) // #15 PB3 ---> D3 (TRH031M) // #16 PB4 ---> CSB (TRH031M) // #17 PB5 ---> LED // #23 PC0 ---> A0 (TRH031M) // #24 PC1 ---> A1 (TRH031M) // #25 PC2 ---> A2 (TRH031M) // #26 PC3 ---> ALE (TRH031M) // #27 PC4 ---> /RD (TRH031M) // #28 PC5 ---> /WR (TRH031M)
标签: 13.560 ATMEGA 3Alogi source
上传时间: 2017-03-31
上传用户:s363994250
编写一个模拟GPS的应用程序,首先向串口写入如下信息 $GPRMC,082020,A4060.9870,S21720.3278,W,000.0.000.0,070707,005.6,W*62再从串口中读出此信息,并对此信息进行解析,输出经度,纬度,北京时间
上传时间: 2017-04-30
上传用户:wmwai1314
About this Document This whitepaper has been converted to a free chm format for ease of use for DotNetNuke 2.1.2 skinning by Nina Meiers, core team member, designer of the DNN 3 skins, winner of the most professional DotNetNuke site for 2004, and over 40,000 downloads of free skins available on
标签: whitepaper converted for Document
上传时间: 2013-12-05
上传用户:exxxds
VB快速端口扫描器的源代码,能快速扫描计算机或局域网中所有存在安全隐患的端口。程序中附带特洛伊和后门程序信息的数据库,主要特色是扫描速度快,扫描32,000个端口仅仅需要一分钟不到。你可以更新数据库中的特洛伊和后门程序信息以便进行比对和查找可疑打开的端口。程序代码还有一些比较好的IP转换为域名以及互相转换的函数,对VB网络编程的朋友有一定参考价值。
上传时间: 2017-08-13
上传用户:redmoons
Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test case, the first line contains the number of vertices (n) and the number of arcs (m). Then, there exist m lines, one for each arc (source vertex, ending vertex and arc weight, separated by a space). The nodes are numbered from 1 to n. The node 1 and node n should be in different sets. There are no more than 30 arcs and 15 nodes. The arc weights vary between 1 and 1 000 000. Output: The output is a single line for each case, with the corresponding minimum size cut. Example: Input: 7 11 1 2 3 1 4 3 2 3 4 3 1 3 3 4 1 3 5 2 4 6 6 4 5 2 5 2 1 5 7 1 6 7 9 Output: 5
标签: Implementation calculates algorithm Edmonds
上传时间: 2014-01-04
上传用户:kiklkook
基于磁阻传感器的宽量程转速测量电路设计 针对工程中高速宽范围转速测量需求,提出了一种基于磁阻传感器的宽量程转速测量方法。设计了转速信号调理电路 ,着重对实际应用中因磁场不对称、 测量转速范围宽引起测量不可靠问题进行了分析和实验研究 ,最终 ,确定了转速信号调理电路参数 ,使得在最高转速达 120 000 r /min的条件下工作可靠 ,并成功应用于微型涡喷发动机控制系统。
上传时间: 2014-01-16
上传用户:13681659100
Solving Problem inheritance by Prolog The parents of Mark are Linda and Peter. The parents of Fiona are Linda and Peter. The parents of Andrea are Fiona and Andrew. The parents of John are Fiona and Andrew. The parents of Eileen are Andrea and Alan. The parents of Jane are Andrea and Alan. Total Inheritance Everyone in my family, who holds a PhD should receive $100,000. Everyone in my family, receives $3,000 for every aunt they have who holds a PhD. Everyone in my family, receives $2,000 for every uncle they have who holds a PhD. Everyone in my family, receives $100 for every sibling holding a University degree. Peter, Mark, and Fiona hold a PhD. Mark, Linda, and Andrea all hold a MSc. Andrew, John, Alan, Eileen hold a BSc. Jane holds a Tafe certificate.
标签: parents inheritance The Solving
上传时间: 2014-01-08
上传用户:15071087253