在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 89C51程序库

89C51程序库

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:0.75M
  • 下载次数:9
  • 浏览次数:146
  • 发布时间:2020-08-15
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
89C51的程序库,包含IO、定时中断、计数器、模拟PWM、串口等等
【实例截图】
【核心代码】
51实验程序库
└── 实验程序
├── 中级实验例程
│   ├── DS1302时钟LCD1602显示(可以按键设置时钟)
│   │   ├── ds1302.c
│   │   ├── ds1302.h
│   │   ├── lcd.c
│   │   ├── lcd.h
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── LCD1602显示矩阵按键键值
│   │   └── 程序
│   │   ├── lcd.c
│   │   ├── lcd.h
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── LCD1602显示红外值
│   │   ├── lcd.c
│   │   ├── lcd.h
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── LCD1602滚动显示
│   │   ├── 滚动显示
│   │   ├── 滚动显示.c
│   │   ├── 滚动显示.hex
│   │   ├── 滚动显示.uvopt
│   │   └── 滚动显示.uvproj
│   ├── LCD显示温度+串口接收温度
│   │   ├── lcd.c
│   │   ├── lcd.h
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   ├── pro.uvproj
│   │   ├── temp.c
│   │   └── temp.h
│   ├── LED流水+定时器
│   │   ├── LED
│   │   ├── LED.hex
│   │   ├── LED.uvopt
│   │   ├── LED.uvproj
│   │   └── main.c
│   ├── LED点阵显示数字
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── LED点阵显示汉字
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── 定时器秒表(查询方式)
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 按键控制数码管
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 按键控制蜂鸣器
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 矩阵按键数码管移位显示
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── 秒表
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 蜂鸣器音乐之八月桂花
│   │   ├── beep
│   │   ├── beep.c
│   │   ├── beep.hex
│   │   ├── beep.uvopt
│   │   └── beep.uvproj
│   ├── 门铃设计
│   │   ├── 定时器设计的门铃
│   │   ├── 定时器设计的门铃.c
│   │   ├── 定时器设计的门铃.hex
│   │   ├── 定时器设计的门铃.uvopt
│   │   └── 定时器设计的门铃.uvproj
│   └── 音乐播放器
│   ├── main.c
│   ├── music.h
│   ├── SoundPlay.h
│   ├── template
│   ├── template.hex
│   ├── template.uvopt
│   └── template.uvproj
├── 基础实验例程
│   ├── 实验10:8X8LED点阵(显示数字)
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   └── template_uvproj.bak
│   ├── 实验11:外部中断0
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验12:外部中断1
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验13:定时器0中断
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验14:定时器1中断
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验15:串口通信
│   │   ├── main.c
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.M51
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvgui_Administrator.bak
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   ├── template_uvproj.bak
│   │   └── 串口助手设置截图.png
│   ├── 实验16:EEPROM-IIC
│   │   ├── i2c.c
│   │   ├── i2c.h
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   └── template_uvproj.bak
│   ├── 实验17:DS18B20温度传感器
│   │   ├── main.c
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── temp.c
│   │   ├── temp.h
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.M51
│   │   ├── template.plg
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   ├── temp.LST
│   │   └── temp.OBJ
│   ├── 实验18:DS1302时钟
│   │   ├── ds1302.c
│   │   ├── ds1302.h
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验19:红外通信
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   └── template_uvproj.bak
│   ├── 实验1:点亮第一个LED
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvgui_Administrator.bak
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   └── template.uvproj
│   ├── 实验20:AD模数转换
│   │   ├── 光敏电阻AD值
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   ├── template.uvproj
│   │   │   ├── XPT2046.c
│   │   │   └── XPT2046.h
│   │   ├── 外部输入AD值
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   ├── template.uvproj
│   │   │   ├── XPT2046.c
│   │   │   └── XPT2046.h
│   │   ├── 热敏电阻AD值
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   ├── template.uvproj
│   │   │   ├── XPT2046.c
│   │   │   └── XPT2046.h
│   │   ├── 电位器AD值
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   ├── template.uvproj
│   │   │   ├── XPT2046.c
│   │   │   ├── XPT2046.h
│   │   │   └── XPT2046.__i
│   │   └── 电位器AD值.rar
│   ├── 实验21:DA数模转换
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验22:LCD1602液晶
│   │   ├── LCD1602不带转接板
│   │   │   ├── lcd.c
│   │   │   ├── lcd.h
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   └── template.uvproj
│   │   ├── LCD1602带转接板
│   │   │   ├── lcd.c
│   │   │   ├── lcd.h
│   │   │   ├── lcd.LST
│   │   │   ├── lcd.OBJ
│   │   │   ├── main.c
│   │   │   ├── main.LST
│   │   │   ├── main.OBJ
│   │   │   ├── template
│   │   │   ├── template.build_log.htm
│   │   │   ├── template.hex
│   │   │   ├── template.lnp
│   │   │   ├── template.M51
│   │   │   ├── template.uvgui.Administrator
│   │   │   ├── template.uvopt
│   │   │   ├── template_uvopt.bak
│   │   │   ├── template.uvproj
│   │   │   └── template_uvproj.bak
│   │   ├── LCD1602带转接板.rar
│   │   └── 说明.txt
│   ├── 实验2:LED闪烁
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验3:LED流水灯
│   │   ├── main.c
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.M51
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvgui_Administrator.bak
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   └── template_uvproj.bak
│   ├── 实验4:蜂鸣器
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验5:静态数码管显示
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验6:动态数码管显示
│   │   ├── main.c
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.M51
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template_uvopt.bak
│   │   ├── template.uvproj
│   │   └── template_uvproj.bak
│   ├── 实验7:独立按键
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验8:矩阵按键
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   └── 实验9:8X8LED点阵(点亮一个点)
│   ├── main.c
│   ├── main.LST
│   ├── main.OBJ
│   ├── template
│   ├── template.build_log.htm
│   ├── template.hex
│   ├── template.lnp
│   ├── template.M51
│   ├── template.plg
│   ├── template.uvgui.Administrator
│   ├── template.uvgui_Administrator.bak
│   ├── template.uvopt
│   ├── template_uvopt.bak
│   ├── template.uvproj
│   └── template_uvproj.bak
├── 说明.txt
└── 高级应用例程
├── 基于单片机的温度湿度采集系统
│   └── 程序
│   ├── eeprom52.h
│   ├── 测温湿度程序
│   ├── 测温湿度程序.c
│   ├── 测温湿度程序.hex
│   ├── 测温湿度程序.uvopt
│   └── 测温湿度程序.uvproj
├── 孵化环境温湿度监控系统设计
│   ├── 原理图截图.png
│   ├── 必看.txt
│   └── 程序设计
│   ├── 1
│   ├── 1.c
│   ├── 1.hex
│   ├── 1.plg
│   ├── 1.uvgui.Administrator
│   ├── 1.uvgui_Administrator.bak
│   ├── 1.uvopt
│   ├── 1_uvopt.bak
│   └── 1.uvproj
├── 超声波测距(LCD1602显示)
│   ├── 接线说明.txt
│   └── 程序
│   ├── lcd.c
│   ├── lcd.h
│   ├── main.c
│   ├── pro
│   ├── pro.hex
│   ├── pro.uvopt
│   └── pro.uvproj
└── 超声波测距(数码管显示)
├── main.c
├── Uitr
├── Uitr.hex
├── Uitr.uvopt
└── Uitr.uvproj

56 directories, 349 files

标签:

实例下载地址

89C51程序库

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警