实例介绍
1.红外感应自动移门 2.基于Propeller手势识别系统设计 3.红外感应开关 5.智能家居8路供电中控系统 6.单片机控制的无线遥控多用电源 7.能锁定输出电压的安全型数控稳压电源 9.室内外双显温度计 10.DIY定时摄影装置 11.ARM7音乐播放器 12.GPS记录器DIY 13.没有琴弦的电子琴 14.单片机让数字调频收音化繁为简 15.基于AVR单片机的"听话"小车 16.实战AVR机器人小车 18.简易超声波避障
【实例截图】
【核心代码】
30例
└── 精选单片机设计与制作30例
├── 10.DIY定时摄影装置
│ ├── main
│ ├── main.c
│ ├── main.LST
│ ├── main.OBJ
│ ├── NC
│ ├── NC.hex
│ ├── NC.lnp
│ ├── NC.M51
│ ├── NC.plg
│ ├── NC.uvopt
│ ├── NC_uvopt.bak
│ ├── NC.uvproj
│ ├── NC_uvproj.bak
│ └── 说明.txt
├── 11.ARM7音乐播放器
│ ├── orcad原理图
│ │ └── HIFIPLAYER.DSN
│ ├── 烧录文件
│ │ └── HIFIplayer.bin
│ └── 视屏效果
│ └── ARM7 IIS HIFI 音乐播放器.mp4
├── 12.GPS记录器DIY
│ ├── Libraries
│ │ ├── CMSIS
│ │ │ ├── CM3
│ │ │ │ ├── CoreSupport
│ │ │ │ │ ├── core_cm3.c
│ │ │ │ │ └── core_cm3.h
│ │ │ │ └── DeviceSupport
│ │ │ │ └── ST
│ │ │ │ ├── Release_Notes_for_STM32F10x_CMSIS.html
│ │ │ │ └── STM32F10x
│ │ │ │ ├── startup
│ │ │ │ │ └── arm
│ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ └── startup_stm32f10x_md_vl.s
│ │ │ │ ├── stm32f10x.h
│ │ │ │ └── system_stm32f10x.h
│ │ │ ├── CMSIS_changes.htm
│ │ │ ├── CMSIS debug support.htm
│ │ │ └── Documentation
│ │ │ └── CMSIS_Core.htm
│ │ └── STM32F10x_StdPeriph_Driver
│ │ ├── inc
│ │ │ ├── misc.h
│ │ │ ├── stm32f10x_adc.h
│ │ │ ├── stm32f10x_bkp.h
│ │ │ ├── stm32f10x_can.h
│ │ │ ├── stm32f10x_cec.h
│ │ │ ├── stm32f10x_crc.h
│ │ │ ├── stm32f10x_dac.h
│ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ ├── stm32f10x_dma.h
│ │ │ ├── stm32f10x_exti.h
│ │ │ ├── stm32f10x_flash.h
│ │ │ ├── stm32f10x_fsmc.h
│ │ │ ├── stm32f10x_gpio.h
│ │ │ ├── stm32f10x_i2c.h
│ │ │ ├── stm32f10x_iwdg.h
│ │ │ ├── stm32f10x_pwr.h
│ │ │ ├── stm32f10x_rcc.h
│ │ │ ├── stm32f10x_rtc.h
│ │ │ ├── stm32f10x_sdio.h
│ │ │ ├── stm32f10x_spi.h
│ │ │ ├── stm32f10x_tim.h
│ │ │ ├── stm32f10x_usart.h
│ │ │ └── stm32f10x_wwdg.h
│ │ ├── Release_Notes_for_STM32F10x_StdPeriph_Driver.html
│ │ └── src
│ │ ├── misc.c
│ │ ├── stm32f10x_adc.c
│ │ ├── stm32f10x_bkp.c
│ │ ├── stm32f10x_can.c
│ │ ├── stm32f10x_cec.c
│ │ ├── stm32f10x_crc.c
│ │ ├── stm32f10x_dac.c
│ │ ├── stm32f10x_dbgmcu.c
│ │ ├── stm32f10x_dma.c
│ │ ├── stm32f10x_exti.c
│ │ ├── stm32f10x_flash.c
│ │ ├── stm32f10x_fsmc.c
│ │ ├── stm32f10x_gpio.c
│ │ ├── stm32f10x_i2c.c
│ │ ├── stm32f10x_iwdg.c
│ │ ├── stm32f10x_pwr.c
│ │ ├── stm32f10x_rcc.c
│ │ ├── stm32f10x_rtc.c
│ │ ├── stm32f10x_sdio.c
│ │ ├── stm32f10x_spi.c
│ │ ├── stm32f10x_tim.c
│ │ ├── stm32f10x_usart.c
│ │ └── stm32f10x_wwdg.c
│ └── User
│ ├── common.c
│ ├── common.h
│ ├── cortexm3_macro.h
│ ├── cortexm3_macro.s
│ ├── FATFS
│ │ ├── 00readme.txt
│ │ ├── diskio.h
│ │ ├── doc
│ │ │ ├── 00index_e.html
│ │ │ ├── 00index_j.html
│ │ │ ├── css_e.css
│ │ │ ├── css_j.css
│ │ │ ├── en
│ │ │ │ ├── appnote.html
│ │ │ │ ├── chdir.html
│ │ │ │ ├── chdrive.html
│ │ │ │ ├── chmod.html
│ │ │ │ ├── close.html
│ │ │ │ ├── dinit.html
│ │ │ │ ├── dioctl.html
│ │ │ │ ├── dread.html
│ │ │ │ ├── dstat.html
│ │ │ │ ├── dwrite.html
│ │ │ │ ├── eof.html
│ │ │ │ ├── error.html
│ │ │ │ ├── fattime.html
│ │ │ │ ├── filename.html
│ │ │ │ ├── forward.html
│ │ │ │ ├── getcwd.html
│ │ │ │ ├── getfree.html
│ │ │ │ ├── gets.html
│ │ │ │ ├── lseek.html
│ │ │ │ ├── mkdir.html
│ │ │ │ ├── mkfs.html
│ │ │ │ ├── mount.html
│ │ │ │ ├── opendir.html
│ │ │ │ ├── open.html
│ │ │ │ ├── printf.html
│ │ │ │ ├── putc.html
│ │ │ │ ├── puts.html
│ │ │ │ ├── rc.html
│ │ │ │ ├── readdir.html
│ │ │ │ ├── read.html
│ │ │ │ ├── rename.html
│ │ │ │ ├── sdir.html
│ │ │ │ ├── sfatfs.html
│ │ │ │ ├── sfile.html
│ │ │ │ ├── sfileinfo.html
│ │ │ │ ├── size.html
│ │ │ │ ├── stat.html
│ │ │ │ ├── sync.html
│ │ │ │ ├── tell.html
│ │ │ │ ├── truncate.html
│ │ │ │ ├── unlink.html
│ │ │ │ ├── utime.html
│ │ │ │ └── write.html
│ │ │ ├── img
│ │ │ │ ├── f1.png
│ │ │ │ ├── f2.png
│ │ │ │ ├── f3.png
│ │ │ │ ├── f4.png
│ │ │ │ ├── f5.png
│ │ │ │ ├── f6.png
│ │ │ │ ├── layers.png
│ │ │ │ ├── rwtest2.png
│ │ │ │ └── rwtest.png
│ │ │ ├── ja
│ │ │ │ ├── appnote.html
│ │ │ │ ├── chdir.html
│ │ │ │ ├── chdrive.html
│ │ │ │ ├── chmod.html
│ │ │ │ ├── close.html
│ │ │ │ ├── dinit.html
│ │ │ │ ├── dioctl.html
│ │ │ │ ├── dread.html
│ │ │ │ ├── dstat.html
│ │ │ │ ├── dwrite.html
│ │ │ │ ├── eof.html
│ │ │ │ ├── error.html
│ │ │ │ ├── fattime.html
│ │ │ │ ├── filename.html
│ │ │ │ ├── forward.html
│ │ │ │ ├── getcwd.html
│ │ │ │ ├── getfree.html
│ │ │ │ ├── gets.html
│ │ │ │ ├── lseek.html
│ │ │ │ ├── mkdir.html
│ │ │ │ ├── mkfs.html
│ │ │ │ ├── mount.html
│ │ │ │ ├── opendir.html
│ │ │ │ ├── open.html
│ │ │ │ ├── printf.html
│ │ │ │ ├── putc.html
│ │ │ │ ├── puts.html
│ │ │ │ ├── rc.html
│ │ │ │ ├── readdir.html
│ │ │ │ ├── read.html
│ │ │ │ ├── rename.html
│ │ │ │ ├── sdir.html
│ │ │ │ ├── sfatfs.html
│ │ │ │ ├── sfile.html
│ │ │ │ ├── sfileinfo.html
│ │ │ │ ├── size.html
│ │ │ │ ├── stat.html
│ │ │ │ ├── sync.html
│ │ │ │ ├── tell.html
│ │ │ │ ├── truncate.html
│ │ │ │ ├── unlink.html
│ │ │ │ ├── utime.html
│ │ │ │ └── write.html
│ │ │ └── updates.txt
│ │ ├── ff.c
│ │ ├── ffconf.h
│ │ ├── ff.h
│ │ ├── integer.h
│ │ └── option
│ │ ├── cc932.c
│ │ ├── cc936.c
│ │ ├── cc949.c
│ │ ├── cc950.c
│ │ ├── ccsbcs.c
│ │ └── syscall.c
│ ├── GPS.c
│ ├── GPS.h
│ ├── keyboard.c
│ ├── keyboard.h
│ ├── LCD_FONT.h
│ ├── Logger.c
│ ├── Logger.h
│ ├── main.c
│ ├── menu.c
│ ├── menu.h
│ ├── MyGPS_My GPS.dep
│ ├── MyGPS.uvopt
│ ├── MyGPS.uvproj
│ ├── S1D15E06.C
│ ├── S1D15E06.h
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.h
│ ├── system_stm32f10x.c
│ ├── TF.c
│ ├── TF.h
│ ├── W25Q16.c
│ └── W25Q16.h
├── 13.没有琴弦的电子琴
│ └── 022822.asm
├── 14.单片机让数字调频收音化繁为简
│ └── m8radio_code.txt
├── 15.基于AVR单片机的“听话”小车
│ ├── AsrItem.h
│ ├── common.h
│ ├── LDChip.c
│ ├── LDChip.h
│ ├── main.c
│ ├── motor.c
│ ├── motor.h
│ ├── Reg_RW.c
│ ├── Reg_RW.h
│ ├── uart.c
│ └── uart.h
├── 16.实战AVR机器人小车
│ └── 实战AVR机器人小车应用案例程序.txt
├── 18.简易超声波避障小车制作
│ ├── common.h
│ ├── dist.c
│ ├── dist.h
│ ├── main.c
│ ├── motor.c
│ ├── motor.h
│ ├── uart.c
│ └── uart.h
├── 19.走迷宫小车
│ ├── common.h
│ ├── main.c
│ ├── maze.c
│ ├── maze.h
│ ├── motor.c
│ ├── motor.h
│ ├── pid.c
│ ├── pid.h
│ ├── rpr220.c
│ ├── rpr220.h
│ ├── uart.c
│ ├── uart.h
│ └── 视频
│ └── 迷宫小车.rmvb
├── 1.红外感应自动移门
│ └── MovDoor.c
├── 20.GPS卫星定位仪DIY
│ ├── GPS1
│ ├── GPS1.c
│ ├── GPS1.hex
│ ├── GPS1.lnp
│ ├── GPS1.LST
│ ├── GPS1.M51
│ ├── GPS1.OBJ
│ ├── GPS1.Opt
│ ├── GPS1.plg
│ ├── GPS1.Uv2
│ ├── GPS1_Uv2.Bak
│ ├── head.h
│ ├── lcd.c
│ ├── readme.txt
│ ├── STARTUP.A51
│ ├── STARTUP.LST
│ └── STARTUP.OBJ
├── 21.基于HMC5883L的电子罗盘
│ ├── PC端源码
│ │ ├── Control
│ │ │ ├── Control.aps
│ │ │ ├── Control.cpp
│ │ │ ├── ControlDlg.cpp
│ │ │ ├── ControlDlg.h
│ │ │ ├── Control.h
│ │ │ ├── Control.rc
│ │ │ ├── Control.vcproj
│ │ │ ├── Control.vcproj.EUTROVISION.ruiting.jiang.user
│ │ │ ├── Control.vcproj.JRT.Administrator.user
│ │ │ ├── Debug
│ │ │ │ └── BuildLog.htm
│ │ │ ├── MyCom.cpp
│ │ │ ├── MyCom.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── res
│ │ │ │ ├── Control.ico
│ │ │ │ └── Control.rc2
│ │ │ ├── resource.h
│ │ │ ├── stdafx.cpp
│ │ │ └── stdafx.h
│ │ └── Control.sln
│ └── 单片机源码
│ ├── common.h
│ ├── hmc5883l.c
│ ├── hmc5883l.h
│ ├── i2c.c
│ ├── i2c.h
│ ├── luopan.c
│ ├── luopan.h
│ ├── main.c
│ ├── uart.c
│ └── uart.h
├── 22.自制数字示波器
│ ├── asciilib.h
│ ├── dso.cof
│ ├── dso.dbg
│ ├── dso.hex
│ ├── dso.lk
│ ├── dso.lst
│ ├── dso.mak
│ ├── dso.mp
│ ├── dso.prj
│ ├── DSO.SRC
│ ├── ILI9325.H
│ ├── main._c
│ ├── main.c
│ ├── main.dp2
│ ├── main.lis
│ ├── main.o
│ └── main.s
├── 23.电容电感测量仪
│ ├── 图1.SCH
│ ├── 图2.SCH
│ ├── 图3.SCH
│ ├── 烧写文件.hex
│ └── 程序.doc
├── 24.自制盖革-米勒计数器
│ ├── GM-end.c
│ └── GM.Sch
├── 26.AVR单片机使用SPI通信扩展IO口
│ ├── MASTER_SPI.c
│ └── SLAVE_SPI.c
├── 27.AVR单片机与CPLD之间使用SPI总线进行通信
│ ├── cpld接收test_spi
│ │ ├── db
│ │ │ ├── prev_cmp_test_spi.asm.qmsg
│ │ │ ├── prev_cmp_test_spi.fit.qmsg
│ │ │ ├── prev_cmp_test_spi.map.qmsg
│ │ │ ├── prev_cmp_test_spi.qmsg
│ │ │ ├── prev_cmp_test_spi.sim.qmsg
│ │ │ ├── prev_cmp_test_spi.tan.qmsg
│ │ │ ├── test_spi.(0).cnf.cdb
│ │ │ ├── test_spi.(0).cnf.hdb
│ │ │ ├── test_spi.(1).cnf.cdb
│ │ │ ├── test_spi.(1).cnf.hdb
│ │ │ ├── test_spi.(2).cnf.cdb
│ │ │ ├── test_spi.(2).cnf.hdb
│ │ │ ├── test_spi.asm.qmsg
│ │ │ ├── test_spi.cbx.xml
│ │ │ ├── test_spi.cmp0.ddb
│ │ │ ├── test_spi.cmp.cdb
│ │ │ ├── test_spi.cmp.hdb
│ │ │ ├── test_spi.cmp.logdb
│ │ │ ├── test_spi.cmp.rdb
│ │ │ ├── test_spi.cmp.tdb
│ │ │ ├── test_spi.db_info
│ │ │ ├── test_spi.eco.cdb
│ │ │ ├── test_spi.eds_overflow
│ │ │ ├── test_spi.fit.qmsg
│ │ │ ├── test_spi.hier_info
│ │ │ ├── test_spi.hif
│ │ │ ├── test_spi.map.cdb
│ │ │ ├── test_spi.map.hdb
│ │ │ ├── test_spi.map.logdb
│ │ │ ├── test_spi.map.qmsg
│ │ │ ├── test_spi.pre_map.cdb
│ │ │ ├── test_spi.pre_map.hdb
│ │ │ ├── test_spi.rtlv.hdb
│ │ │ ├── test_spi.rtlv_sg.cdb
│ │ │ ├── test_spi.rtlv_sg_swap.cdb
│ │ │ ├── test_spi.sgdiff.cdb
│ │ │ ├── test_spi.sgdiff.hdb
│ │ │ ├── test_spi.sim.cvwf
│ │ │ ├── test_spi.sim.hdb
│ │ │ ├── test_spi.sim.qmsg
│ │ │ ├── test_spi.sim.rdb
│ │ │ ├── test_spi.sld_design_entry_dsc.sci
│ │ │ ├── test_spi.sld_design_entry.sci
│ │ │ ├── test_spi.smp_dump.txt
│ │ │ ├── test_spi.syn_hier_info
│ │ │ ├── test_spi.tan.qmsg
│ │ │ ├── test_spi.tis_db_list.ddb
│ │ │ ├── test_spi.tmw_info
│ │ │ └── wed.wsf
│ │ ├── jtag.log
│ │ ├── test_spi.asm.rpt
│ │ ├── test_spi.done
│ │ ├── test_spi.dpf
│ │ ├── test_spi.fit.rpt
│ │ ├── test_spi.fit.summary
│ │ ├── test_spi.flow.rpt
│ │ ├── test_spi.jed
│ │ ├── test_spi.map.rpt
│ │ ├── test_spi.map.summary
│ │ ├── test_spi.pin
│ │ ├── test_spi.pof
│ │ ├── test_spi.qpf
│ │ ├── test_spi.qsf
│ │ ├── test_spi.qws
│ │ ├── test_spi.sim.rpt
│ │ ├── test_spi.tan.rpt
│ │ ├── test_spi.tan.summary
│ │ ├── test_spi.tcl
│ │ ├── test_spi.txt
│ │ ├── test_spi.v
│ │ ├── test_spi.v.bak
│ │ └── test_spi.vwf
│ └── 单片机发送send
│ ├── 1.DSN
│ ├── 1.PWI
│ ├── Debug
│ │ ├── Exe
│ │ │ ├── send.hex
│ │ │ └── send.sym
│ │ └── Obj
│ │ ├── send.pbd
│ │ └── send.r90
│ ├── lcd1602_8bit.c
│ ├── send.c
│ ├── send.dep
│ ├── send.ewd
│ ├── send.ewp
│ ├── send.eww
│ └── settings
│ ├── send.cspy.bat
│ ├── send.dbgdt
│ ├── send.dni
│ └── send.wsdt
├── 28.DIY单片机学习板
│ ├── PL2303 VISTA WIN7驱动
│ │ └── PL-2303 Vista Driver Installer.exe
│ ├── PL2303 XP 驱动
│ │ └── PL-2303 Driver Installer.exe
│ └── STC_ISP_V480.CAB
├── 2.基于Propeller手势识别系统设计
│ ├── Conduit.spin
│ ├── i2cObject.spin
│ ├── QuickSample.spin
│ └── _Tilt.spin
├── 30.用CH341A自制单片机程序下载器
│ └── PCB文件.pcb
├── 3.红外感应开关
│ └── STC_FR_C.hex
├── 5.智能家居8路供电中控系统
│ └── Relay8-8路供电中控系统源代码.docx
├── 6.单片机控制的无线遥控多用电源
│ └── 源程序.doc
├── 7.能锁定输出电压的安全型数控稳压电源
│ └── C语言源程序.doc
├── 9.室内外双显温度计
│ ├── 双温.asm
│ └── 双温.hex
├── AUTORUN
│ ├── AUTORUN.EXE
│ ├── AUTORUN.INF
│ ├── INDEX.HTM
│ └── RADIO.ICO
├── AUTORUN.INF
├── html
│ ├── 5.jpg
│ ├── about.htm
│ ├── adver.htm
│ ├── article.htm
│ ├── blogo.jpg
│ ├── contact.htm
│ ├── contents.htm
│ ├── gjzw_09.gif
│ ├── gjzw_11.gif
│ ├── gjzw_12.gif
│ ├── i.gif
│ ├── mainstyle.css
│ ├── nopic.jpg
│ ├── theme_radio.css
│ ├── zd1.jpg
│ ├── zd2.jpg
│ ├── zd3.jpg
│ ├── zd4.jpg
│ ├── zd.htm
│ ├── 无线电单页1.jpg
│ └── 无线电广告页2.jpg
└── START.htm
66 directories, 451 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论