在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → 单片机程序(含初级、中级、高级示例共44个)

单片机程序(含初级、中级、高级示例共44个)

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:5.86M
  • 下载次数:14
  • 浏览次数:84
  • 发布时间:2020-11-08
  • 实例类别:嵌入式开发
  • 发 布 人:打电话不接
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 程序

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

实验程序

├── 说明.txt
├── 中级实验例程
│   ├── DS1302时钟LCD1602显示(可以按键设置时钟)
│   │   ├── ds1302.c
│   │   ├── ds1302.h
│   │   ├── lcd.c
│   │   ├── lcd.h
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.hex
│   │   ├── pro.uvopt
│   │   └── pro.uvproj
│   ├── LCD1602滚动显示
│   │   ├── 滚动显示
│   │   ├── 滚动显示.c
│   │   ├── 滚动显示.hex
│   │   ├── 滚动显示.uvopt
│   │   └── 滚动显示.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.plg
│   │       ├── pro.uvopt
│   │       ├── pro.uvproj
│   │       ├── pro_uvopt.bak
│   │       └── pro_uvproj.bak
│   ├── LCD显示温度 串口接收温度
│   │   ├── lcd.LST
│   │   ├── lcd.OBJ
│   │   ├── lcd.c
│   │   ├── lcd.h
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── main.c
│   │   ├── pro
│   │   ├── pro.M51
│   │   ├── pro.hex
│   │   ├── pro.lnp
│   │   ├── pro.plg
│   │   ├── pro.uvopt
│   │   ├── pro.uvproj
│   │   ├── pro_uvopt.bak
│   │   ├── pro_uvproj.bak
│   │   ├── temp.LST
│   │   ├── temp.OBJ
│   │   ├── 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
│   ├── 门铃设计
│   │   ├── 定时器设计的门铃
│   │   ├── 定时器设计的门铃.c
│   │   ├── 定时器设计的门铃.hex
│   │   ├── 定时器设计的门铃.uvopt
│   │   └── 定时器设计的门铃.uvproj
│   ├── 音乐播放器
│   │   ├── SoundPlay.h
│   │   ├── main.c
│   │   ├── music.h
│   │   ├── 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
│   ├── 蜂鸣器音乐之八月桂花
│   │   ├── beep
│   │   ├── beep.c
│   │   ├── beep.hex
│   │   ├── beep.uvopt
│   │   └── beep.uvproj
│   ├── 定时器秒表(查询方式)
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   └── 矩阵按键数码管移位显示
│       ├── main.c
│       ├── pro
│       ├── pro.hex
│       ├── pro.uvopt
│       └── pro.uvproj
├── 基础实验例程
│   ├── 实验10:8X8LED点阵(显示数字)
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── 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.LST
│   │   ├── main.OBJ
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.M51
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvgui_Administrator.bak
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   ├── 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.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验17:DS18B20温度传感器
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── main.c
│   │   ├── temp.LST
│   │   ├── temp.OBJ
│   │   ├── temp.c
│   │   ├── temp.h
│   │   ├── template
│   │   ├── template.M51
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.plg
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验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.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验1:点亮第一个LED
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.plg
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvgui_Administrator.bak
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验20:AD模数转换
│   │   ├── 电位器AD值
│   │   │   ├── XPT2046.__i
│   │   │   ├── XPT2046.c
│   │   │   ├── XPT2046.h
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   └── template.uvproj
│   │   ├── 电位器AD值.rar
│   │   ├── 光敏电阻AD值
│   │   │   ├── XPT2046.c
│   │   │   ├── XPT2046.h
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   └── template.uvproj
│   │   ├── 外部输入AD值
│   │   │   ├── XPT2046.c
│   │   │   ├── XPT2046.h
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.uvopt
│   │   │   └── template.uvproj
│   │   └── 热敏电阻AD值
│   │       ├── XPT2046.c
│   │       ├── XPT2046.h
│   │       ├── main.c
│   │       ├── template
│   │       ├── template.hex
│   │       ├── template.uvopt
│   │       └── template.uvproj
│   ├── 实验21:DA数模转换
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验22:LCD1602液晶
│   │   ├── LCD1602带转接板
│   │   │   ├── lcd.LST
│   │   │   ├── lcd.OBJ
│   │   │   ├── lcd.c
│   │   │   ├── lcd.h
│   │   │   ├── main.LST
│   │   │   ├── main.OBJ
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.M51
│   │   │   ├── template.build_log.htm
│   │   │   ├── template.hex
│   │   │   ├── template.lnp
│   │   │   ├── template.uvgui.Administrator
│   │   │   ├── template.uvopt
│   │   │   ├── template.uvproj
│   │   │   ├── template_uvopt.bak
│   │   │   └── template_uvproj.bak
│   │   ├── LCD1602带转接板.rar
│   │   ├── LCD1602不带转接板
│   │   │   ├── lcd.c
│   │   │   ├── lcd.h
│   │   │   ├── main.c
│   │   │   ├── template
│   │   │   ├── template.hex
│   │   │   ├── template.plg
│   │   │   ├── template.uvopt
│   │   │   ├── template.uvproj
│   │   │   ├── template_uvopt.bak
│   │   │   └── template_uvproj.bak
│   │   └── 说明.txt
│   ├── 实验2:LED闪烁
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.plg
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验3:LED流水灯
│   │   ├── main.LST
│   │   ├── main.OBJ
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.M51
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.plg
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvgui_Administrator.bak
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验4:蜂鸣器
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.hex
│   │   ├── template.uvopt
│   │   └── template.uvproj
│   ├── 实验5:静态数码管显示
│   │   ├── main.LST
│   │   ├── main.c
│   │   ├── template.M51
│   │   ├── template.hex
│   │   ├── template.lnp
│   │   ├── template.plg
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── template_uvproj.bak
│   ├── 实验6:动态数码管显示
│   │   ├── main.c
│   │   ├── template
│   │   ├── template.build_log.htm
│   │   ├── template.hex
│   │   ├── template.plg
│   │   ├── template.uvgui.Administrator
│   │   ├── template.uvopt
│   │   ├── template.uvproj
│   │   ├── template_uvopt.bak
│   │   └── 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.LST
│       ├── main.OBJ
│       ├── main.c
│       ├── template
│       ├── template.M51
│       ├── template.build_log.htm
│       ├── template.hex
│       ├── template.lnp
│       ├── template.plg
│       ├── template.uvgui.Administrator
│       ├── template.uvgui_Administrator.bak
│       ├── template.uvopt
│       ├── template.uvproj
│       ├── template_uvopt.bak
│       └── template_uvproj.bak
└── 高级应用例程
    ├── 超声波测距(LCD1602显示)
    │   ├── 程序
    │   │   ├── lcd.c
    │   │   ├── lcd.h
    │   │   ├── main.c
    │   │   ├── pro
    │   │   ├── pro.hex
    │   │   ├── pro.uvopt
    │   │   └── pro.uvproj
    │   └── 接线说明.txt
    ├── 基于单片机的智能计算器
    │   ├── 实验现象截图.jpg
    │   ├── 智能计算器设计
    │   ├── 智能计算器设计.c
    │   ├── 智能计算器设计.hex
    │   ├── 智能计算器设计.uvopt
    │   └── 智能计算器设计.uvproj
    ├── 超声波测距(数码管显示)
    │   ├── Uitr
    │   ├── Uitr.hex
    │   ├── Uitr.uvopt
    │   ├── Uitr.uvproj
    │   └── main.c
    ├── 孵化环境温湿度监控系统设计
    │   ├── 必看.txt
    │   ├── 程序设计
    │   │   ├── 1
    │   │   ├── 1.c
    │   │   ├── 1.hex
    │   │   ├── 1.plg
    │   │   ├── 1.uvgui.Administrator
    │   │   ├── 1.uvgui_Administrator.bak
    │   │   ├── 1.uvopt
    │   │   ├── 1.uvproj
    │   │   └── 1_uvopt.bak
    │   └── 原理图截图.png
    ├── 基于单片机的室内空气净化系统
    │   ├── 必看.txt
    │   ├── 程序设计
    │   │   ├── 1
    │   │   ├── 1.c
    │   │   ├── 1.hex
    │   │   ├── 1.uvopt
    │   │   ├── 1.uvproj
    │   │   ├── XPT2046.c
    │   │   └── XPT2046.h
    │   ├── 原理图截图.png
    │   └── 芯片资料和清单
    │       ├── LCD1602液晶完整中文资料.pdf
    │       ├── STC90C51 52RC-RD _GUIDE-CHINESE.pdf
    │       ├── xpt2046中文.pdf
    │       └── 元件清单
    └── 基于单片机的温度湿度采集系统
        ├── 程序
        │   ├── eeprom52.h
        │   ├── 测温湿度程序
        │   ├── 测温湿度程序.c
        │   ├── 测温湿度程序.hex
        │   ├── 测温湿度程序.uvopt
        │   └── 测温湿度程序.uvproj
        └── 原理图.pdf

59 directories, 395 files


标签: 程序

实例下载地址

单片机程序(含初级、中级、高级示例共44个)

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警