STM32L475开发板PDF原理图+AD集成3D封装库+主要器件技术手册,集成封装库型号列表如下:Library Component Count : 44Name Description----------------------------------------------------------------------------------------------------ANT-2.4G ANT,2.4G,PCB天线ATK-TEST-1*4-2.54mm 测试点ATK_MODULE 单排母,1*6,2.54mmBEEP 3.3V有源蜂鸣器BUTTON_DIP3 拨动开关SS-12F44C-0402-SMD C-0603-SMD C-CAP-SMD-220uF/10V C-CEP-220uF/16V D-1N4148 Header-1*3-2.54mm 单排针-2.54mmHeader-2*10-2.54mm 双排针-2.54mmHeader-2*2-2.54mm 双排针-2.54mmHeader-2*3-2.54mm 双排针-2.54mmHeader-2*4-2.54mm 双排座-2.54mmIR-LED 1206红外发射管(侧)IR-LF0038GKLL-1 红外接收管SMDJ-MICRO-USB-5S Micro USB 5.9有柱脚长1.25加长针L-0420-4.7uH 电感,4.7uH,3ALCD-TFT-H13TS38A LCD,TFT,1.3'240*240,禹龙LED-0603-RED 发光二极管-红色LED-RGB-1615-0603 RGB,共阳,1615,0603MIC-6022 MICMotor-SMD 电机,SMDPhone-3-M 耳机座,三节R-0402-SMD 贴片电阻R-0805-SMD 贴片电阻RT9193-3.3S-KEY-SMD-324225 KEY,SMD,324225S8050-SMD SD-MICRO-TF SD,MICRO,TFU-AHT10 Sensor,温湿度传感器U-AP3216C Sensor.光照/距离U-AP6181 WIFI Module,SDIOU-ES8388 AUDIO,2-ch DAC,2-ch ADCU-ICM-20608 三轴陀螺仪/三轴加速度计,U-L9110S 电机驱动,800mAU-RT9013-3.3 LDO,500mAU-STM32F103C8T6 U-STM32L475VET6 MCU,LQFP100,512K FLASH,128K RAMU-W25Q128 SPI FLASH,16MY-12M-SMD 晶振 - 12M贴片Y-3215-32.768K XTAL,3215,32.768KY-3215-8M XTAL,3215,8MHz
上传时间: 2021-12-15
上传用户:
FPGA读取OV5640摄像头数据并通过VGA或LCD屏显示输出的Verilog逻辑源码Quartus工程文件+文档说明,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input clk, input rst_n, output cmos_scl, //cmos i2c clock inout cmos_sda, //cmos i2c data input cmos_vsync, //cmos vsync input cmos_href, //cmos hsync refrence,data valid input cmos_pclk, //cmos pxiel clock output cmos_xclk, //cmos externl clock input [7:0] cmos_db, //cmos data output cmos_rst_n, //cmos reset output cmos_pwdn, //cmos power down output vga_out_hs, //vga horizontal synchronization output vga_out_vs, //vga vertical synchronization output[4:0] vga_out_r, //vga red output[5:0] vga_out_g, //vga green output[4:0] vga_out_b, //vga blue output sdram_clk, //sdram clock output sdram_cke, //sdram clock enable output sdram_cs_n, //sdram chip select output sdram_we_n, //sdram write enable output sdram_cas_n, //sdram column address strobe output sdram_ras_n, //sdram row address strobe output[1:0] sdram_dqm, //sdram data enable output[1:0] sdram_ba, //sdram bank address output[12:0] sdram_addr, //sdram address inout[15:0] sdram_dq //sdram data);
上传时间: 2021-12-18
上传用户:
基于FPGA设计的字符VGA LCD显示实验Verilog逻辑源码Quartus工程文件+文档说明,通过字符转换工具将字符转换为 8 进制 mif 文件存放到单端口的 ROM IP 核中,再从ROM 中把转换后的数据读取出来显示到 VGA 上,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input clk, input rst_n, //vga output output vga_out_hs, //vga horizontal synchronization output vga_out_vs, //vga vertical synchronization output[4:0] vga_out_r, //vga red output[5:0] vga_out_g, //vga green output[4:0] vga_out_b //vga blue );wire video_clk;wire video_hs;wire video_vs;wire video_de;wire[7:0] video_r;wire[7:0] video_g;wire[7:0] video_b;wire osd_hs;wire osd_vs;wire osd_de;wire[7:0] osd_r;wire[7:0] osd_g;wire[7:0] osd_b;assign vga_out_hs = osd_hs;assign vga_out_vs = osd_vs;assign vga_out_r = osd_r[7:3]; //discard low bit dataassign vga_out_g = osd_g[7:2]; //discard low bit dataassign vga_out_b = osd_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0 (clk ), .c0 (video_clk ));color_bar color_bar_m0( .clk (video_clk ), .rst (~rst_n ), .hs (video_hs ), .vs (video_vs ), .de (video_de ), .rgb_r (video_r ), .rgb_g (video_g ), .rgb_b (video_b ));osd_display osd_display_m0( .rst_n (rst_n ), .pclk (video_clk ), .i_hs (video_hs ), .i_vs (video_vs ), .i_de (video_de ), .i_data ({video_r,video_g,video_b} ), .o_hs (osd_hs ), .o_vs (osd_vs ), .o_de (osd_de ), .o_data ({osd_r,osd_g,osd_b} ));endmodule
上传时间: 2021-12-18
上传用户:
基于FPGA设计的vga显示测试实验Verilog逻辑源码Quartus工程文件+文档说明,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input clk, input rst_n, //vga output output vga_out_hs, //vga horizontal synchronization output vga_out_vs, //vga vertical synchronization output[4:0] vga_out_r, //vga red output[5:0] vga_out_g, //vga green output[4:0] vga_out_b //vga blue );wire video_clk;wire video_hs;wire video_vs;wire video_de;wire[7:0] video_r;wire[7:0] video_g;wire[7:0] video_b;assign vga_out_hs = video_hs;assign vga_out_vs = video_vs;assign vga_out_r = video_r[7:3]; //discard low bit dataassign vga_out_g = video_g[7:2]; //discard low bit dataassign vga_out_b = video_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0(clk), .c0(video_clk));color_bar color_bar_m0( .clk(video_clk), .rst(~rst_n), .hs(video_hs), .vs(video_vs), .de(video_de), .rgb_r(video_r), .rgb_g(video_g), .rgb_b(video_b));endmodule
标签: fpga vga显示 verilog quartus
上传时间: 2021-12-19
上传用户:kingwide
高通(Qualcomm)蓝牙芯片QCC5151_硬件设计详细指导书(官方内部培训手册)共52页其内容是针对硬件设计、部分重要元器件选择(ESD,Filter)及走线注意事项的详细说明。2 Power management 2.1 SMPS 2.1.1 Components specification 2.1.2 Input power supply selection 2.1.3 Minimize SMPS EMI emissions 2.1.4 Internal LDOs and digital core decoupling 2.1.5 Powering external components 2.2 Charger 2.2.1 Charger connections.2.2.2 General charger operation2.2.3 Temperature measurement during charging 2.3 SYS_CTRL 3 Bluetooth radio3.1 RF PSU component choice 3.2 RF band-pass filter3.3 Layout (天线 走线的注意事项)4 Audio4.1 Audio bypass capacitors 4.2 Earphone speaker output4.3 Line/Mic input 4.4 Headphone output optimizition5 LED pads 5.1 LED driver 5.2 Digital/Button input 5.3 Analog input5.4 Disabled 6 Reset pin (Reset#)7 QSPIinterface 8 USB interfaces 8.1 USB device port8.1.1 USB connections8.1.2 Layout notes8.1.3 USB charger detection
上传时间: 2022-01-24
上传用户:XuVshu
以STC12C5A60S2单片机为控制核心,采用2.4G(JF24D)无线遥控模块进行无线发射与接收,设计了一种双电机遥控船模控制系统.该系统通过切换档杆实现前进后退,方向盘左右转动、暂停按钮等控制直流电机的正转、反转、暂停,使得电机驱动的遥控船模实现前进后退、左右转向、暂停等功能,有效解决了驱动功率小和船模之间相互干扰等问题,可广泛应用于遥控船模领域.Using STC12C5A60S2 single-chip microcomputer as the controller and 2.4 G(JF24D)wireless remote control module for wireless transmission and reception, a dual-motor remote control ship model control system is designed. The system realizes forward and backward by switching the gear lever. The steering wheel rotates left and right and the pause button controls the forward, reverse and pause of the dc motor. The remote controller of ship model driven by the motor realizes forward and backward, left and right steering, pause and other functions. The ship model control system can effectively solve the problems of small driving power and mutual interference between ship models, and can be widely used in the field of remote controller of ship model.
上传时间: 2022-03-27
上传用户:
LED 线阵显示装置, 分为 LED 线性旋转显示主机和图文录入器两部分。主机用直流电机带动由红绿 LED 组成的线阵旋转, 同时线阵按照时序依次切换显示状态, 在固定区域利用视觉暂留效果形成 16×16 点阵, 用以显示图文;图文录入器用 HMI 触控屏作为人机交互界面, 实现图文录入和回放功能。主机与图文录入器通过无线通信方式进行信息交互,可由图文录入器控制主机切换不同工作任务, 以及改变线阵显示内容。The LED linear array display device is divided into two parts:the one is the main unit used to display content,and the other one is used to input the contents.The main unit is driven by a DC motor to rotate the linear array composed by red and green light emitting diodes.At the same time,the 16×16 dot matrix that switching the display state according to the time sequence on the main unit displays pictures and texts in the fixed area,by using the visual temporary effect.The HMI touch screen is used as human machine interface to realize the function that input and playback pictures and texts.The two parts of the device communicate with each other through wireless communication.The image and text input controller can control the main unit to switch different tasks and change the content of linear array displayed.
标签: stc12c5a60s2 单片机 led
上传时间: 2022-03-28
上传用户:jiabin
高通(Qualcomm)蓝牙芯片QCC5144_硬件设计详细指导书(官方内部培训手册)其内容是针对硬件设计、部分重要元器件选择(ESD,Filter)及走线注意事项的详细说明。2 Power management 2.1 SMPS 2.1.1 Components specification 2.1.2 Input power supply selection 92.1.3 Minimize SMPS EMI emissions 2.1.4 Internal LDOs and digital core decoupling 2.1.5 Powering external components 2.2 Charger 2.2.1 Charger connections.2.2.2 General charger operation2.2.3 Temperature measurement during charging 2.3 SYS_CTRL 3 Bluetooth radio3.1 RF PSU component choice 3.2 RF band-pass filter3.3 Layout (天线 走线的注意事项)4 Audio4.1 Audio bypass capacitors 4.2 Earphone speaker output4.3 Line/Mic input 4.4 Headphone output optimizition5 LED pads 5.1 LED driver 5.2 Digital/Button input 5.3 Analog input5.4 Disabled 6 Reset pin (Reset#)7 USB interfaces7.1 USB device port7.1.1 USB device port7.1.2 Layout notes 7.1.3 USB charger detectionA QCC5144 VFBGA example schematic and BOM B Recommended SMPS components specificationB.1 Inductor specifition B.2 Recommended inductors B.3 SMPS capacitor specifition
上传时间: 2022-04-07
上传用户:默默
1.安装好VS2010,网上很多人说使用VC6.0的mscomm32.ocx控件,下载并注册,注册过程看上去还很复杂。我是使用VS2010自带的控件,因此没有这些过程,只需要安装好V52010就行了。2.建立“基于对话框”的MFC工程,命名为CommTest,应用程序类型选择“基于对话框”3.删除默认的“确定”,“取消”按钮和静态文本框“TODO在此放置对话框控件”,添加如下对话框控件:①“打开串口”按钮,添加方法为从右侧“工具箱”拖放一个“Button”到对话框,并在右侧“属性”卡中修改“Caption”为“打开串口”,修改“I0”为“IDC_BUTTON_OPEN”。②“关闭串口”按钮,添加方法为从右侧“工具箱”拖放一个“Button”到对话框,并在右侧“属性”卡中修改“Caption”为“关闭串口”,修改“ID”为“IDC_BUTTON_CLOSE”。③“发送”按钮,添加方法为从右侧“工具箱”拖放一个“Button”到对话框,并在右侧“属性”卡中修改“Caption”为“发送”,修改“ID”为“IDC_BUTTON_SEND”。④“发送编辑框”。⑤“接受编辑框”
上传时间: 2022-06-30
上传用户:shjgzh
eeworm.com VIP专区 单片机源码系列 71资源包含以下内容:1. PWM模块单片机的步进电机细分驱动的理论和方法介绍.pdf2. 基于状态分析的键盘管理软件设计.pdf3. 单片机的步进电机控制器设计介绍.pdf4. 单片机温度控制系统的设计及实现.pdf5. 基于单片机的步进电机细分技术介绍.pdf6. 基于单片机的太阳能电池自动跟踪系统的设计.zip7. 单片机的步进电机细分技术研究介绍.pdf8. 气体压缩因子Z的在线修正与单片机实现.pdf9. Emulating a synchronous serial.pdf10. 基于单片机的霍尔传感器测试系统介绍.pdf11. 使用软件程序仿真C500微控制器系列SSC(同步串行通道)功.pdf12. MPC106 PCI Bridge/Memory Contr.pdf13. 单片机以太网通讯的实现介绍.pdf14. MPC106 PCI桥/存储器控制器硬件规范说明.pdf15. USB Demonstration for DK3200 w.pdf16. 对带有uPSD3234A的DK3200的USB演示.pdf17. An easy way to work with Exter.pdf18. 用外部设备设置32位微控制器TriCore的中断的指令及方法.pdf19. P90CL301 I2C driver routines.pdf20. Input Signal Rise and Fall Tim.pdf21. P90CL301 IIC驱动电路的例行测试及其程序.pdf22. 用51单片机实现公历与农历星期的转换.pdf23. 介绍C16x系列微控制器的输入信号升降时序图及特性.pdf24. XA-S3 I2C driver software.pdf25. 万年历算法.pdf26. MCS-51单片机对步进电机控制的实现.pdf27. XA-S3的IIC接口的驱动器软件程序(C语言).pdf28. Reading and Writing iButtons v.pdf29. 通用单片机试验板原理图.pdf30. I2C slave routines for the 87L.pdf31. Philips微控制器在LIN中的应用.pdf32. MPC7400 Part Number Speci&THOR.pdf33. 87LPC76X的IIC从程序.pdf34. 基于P87C591的CAN总线系统智能节点设计.pdf35. MPC7400l零件号码规范说明.pdf36. Using the 87LPC76X microcontro.pdf37. Control System of Stepp ingMot.pdf38. 68HC05K0 Infra-red Remote Cont.pdf39. 87C576微控制器的在线编程.pdf40. CAN与RS232转换节点的设计与实现.pdf41. 68HC05K0实现红外远程控制键盘的应用.pdf42. 单片机外围线路设计.rar43. 单片机常用芯片和器件手册.rar44. IO口状态切换说明.pdf45. 中断技术.ppt.ppt46. 并行接口.ppt47. DMA技术 -ppt.ppt48. 结构紧凑的Li+电池充电器.pdf49. 定时与计数技术.ppt50. 微机总线与接口标准.ppt51. 中断的概念及51单片机的中断系统.ppt52. 输入输出与接口技术.ppt53. 单片机应用概述.ppt54. 现代微机原理与接口技术.rar55. 单片机应用系统设计的基本方法.ppt56. PCB可测性设计布线规则之建议―从源头改善可测率.pdf57. 单片机A/D和D/A应用接口技术.ppt58. 汇编语言上机过程.ppt.ppt59. PWM的调速原理与应用—小车调速.ppt60. 汇编语言在数据处理中的应用.ppt61. 定时器/计数器基础.ppt62. 驱动程序与应用程序的接口.doc63. 外部中断应用程序设计范例.ppt64. 实验指导书 (TPC-H实验台C语言版).pdf65. 汇编语言程序设计案例—动态显示/障碍物检测/障碍物方位检测.rar66. 指令功能及汇编语言程序设计.rar67. ispdown V2.3 最新版 (可用Altera下载线进.rar68. MCS-51单片机的编程应用范例.pdf69. 51编程指南--MCSÉ-51 Program.rar70. 多运动目标跟踪及连通域标记方法.pdf71. 很经典的仿真器自制资料.rar72. mcs-51指令集.rar73. 自制51单片机编程器.rar74. CAN总线与USB的转接技术.pdf75. 自制ATMEL 89系列FLASH单片机编程器.rar76. 基于ARM处理器LPC2142的高速数据采集卡设计.pdf77. 微机测量系统中的抗干扰措施.pdf78. PGM89 51Flash单片机编程器V3.0.rar79. 改善基于微控制器的应用的瞬态免疫性能.rar80. KEIL C51开发软件操作使用视频教程.rar81. 自制微型51/AVR通用编程器.rar82. C51单片机视频教程.RAR83. 自制51编程器资料.rar84. 基于单片机89C51和89C2051点阵LED图文显示.pdf85. 全遥控6声道AV机的汇编程序.rar86. keil c51中文说明.pdf87. 基于AT89C2051的红外遥控学习器源程序.rar88. 微型计算机课程设计论文—通用微机发声程序的汇编设计.rar89. 从PCI总线的-12V电源获得3.3V电压.pdf90. DS1302+AT89S52+LED时钟程序(C语言源代码+.rar91. 乐曲发声及动画程序.rar92. 单片开关电源的设计和应用.rar93. 51单片机试验板电路图-原理图.rar94. DS1820 C51 子程序 (一线数据传输).doc95. 模拟串口通讯程序(51汇编代码编写).doc96. 8051单片机教程 (word版).rar97. 串行编程器源程序(Keil C语言).rar98. 用C51写的普通拼音输入法源程序代码.zip99. EasyIsp下载线电路图.rar100. 采用18b20芯片的温度测量C51源程序.rar
上传时间: 2013-06-02
上传用户:eeworm