51单片机最小系统原理图、PCB
2022-05-11 17:02:23 7.49MB 51单片机 单片机 AltiumDesigner
1
RT5350 AP 原理图&PCB; V2.3,完整的一套硬件资料。
2022-05-11 15:59:49 2.97MB RT5350 RALINK
1
复旦FM1702SL开发板所有资料(包括原理图,PCB,程序,说明书)
2022-05-10 15:14:09 6.76MB FM1702
1
交流测量应用往往要求电隔离,以保护系统和用户不受高压损害。通常通过使用体积笨重的传感器电压/电流变压器或将数据和电源接口与测量子系统进行隔离,实现电隔离。然而,这些方法占用的空间相当可观,具有隐性成本和设计难题。 Sonoma (MAXREFDES14#)电能测量子系统参考设计利用单个脉冲变压器实现与系统的电隔离,使用电阻作为检测元件。从而形成小尺寸、具有成本优势的电路板。 Sonoma设计采用隔离型电能测量处理器(MAX78615+LMU);多通道、高精度模/数转换器(ADC) (MAX78700);脉冲变压器;可选的20MHz晶振;以及将交流电压和电流转换为可测信号的检测电阻。Sonoma具有嵌入式负载监测单元(LMU)固件、校准和配置数据非易失存储器,是完备的测量子系统,可集成至任意设计。 系统设计框图: 特性应用 高精度功率测量 高压电隔离 预设增益/失调参数 板载4mΩ电流检测电阻,具有良好温度系数 板载电压检测电阻分压器,分压比为2667:1,具有良好温度系数 交流90至264V通用交流输入电压范围 交流电可插拔端子(最大8A) 小尺寸印刷电路板(PCB) 器件驱动器 C语言源代码 Xilinx:registered: LX9和ZedBoard:trade_mark:平台配置文件 Pmod:trade_mark:兼容规格 照明控制系统 商业和工业自动化 可再生能源系统 电动车充电系统 智能家居应用 高精度电能测量系统电路 PCB 截图,用PADS9.0打开: 所有附件内容截图: 更多详细介绍:https://www.maximintegrated.com/cn/design/referenc...
2022-05-10 11:22:12 36.35MB max78615 电路方案
1
基于STM32的多功能数控电源设计(原理图、PCB、程序源码等).zip电子设计大赛STM32项目项目毕业设计及产品设计资料论文基于STM32的多功能数控电源设计(原理图、PCB、程序源码等).zip电子设计大赛STM32项目项目毕业设计及产品设计资料论文基于STM32的多功能数控电源设计(原理图、PCB、程序源码等).zip电子设计大赛STM32项目项目毕业设计及产品设计资料论文基于STM32的多功能数控电源设计(原理图、PCB、程序源码等).zip电子设计大赛STM32项目项目毕业设计及产品设计资料论文 1.合个人学习技术做项目参考合个人学习技术做项目参考 2.适合学生做毕业设计项目参考适合学生做毕业设计项目技术参考 3.适合小团队开发项目技术参考适合小团队开发项目技术参考
2022-05-09 19:40:02 1.28MB stm32 源码软件 arm 嵌入式硬件
SIM800C开发板概述: SIM800C不仅支持四频(在国外也可以),同时支持蓝牙串口,功能非常强大。而且大部分指令兼容SIM900A/SIM900 SIM800C开发板相关参数: 1,串口波特率:1200~460800bps 2,工作频段:850/900/1800/1900M 3,控制方式:AT指令(3GPP TS27.007) 4,GPRS:可PPP连接,内嵌TCP/IP协议 5,基本功能:拨号/接听/短信/GPRS通信 6,扩展功能:彩信/DTMF/TTS/蓝牙 7,供电范围:DC5~24V(2A) 8,工作温度:-40℃ ~85℃ 9,模块尺寸:62mmX52.5mm 附件内容包括SIM800C开发板原理图及PCB,以及ATK-SIM800C模块demo程序、使用手册、封装等 SIM800C开发板实物展示:
2022-05-09 16:05:05 63.28MB gprs模块 sim800c sim800c模块 电路方案
1
本方案为基于DSP2407 开发板实现ADC转换的电路设计,内附有原理图,pcb以及源码文件,适合dsp刚入门的小伙伴学习使用。
2022-05-09 14:15:14 867KB dsp28335 adc转换电路 电路方案
1
//创建初始化播放器资源 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] extern public static IntPtr libvlc_new(int argc, IntPtr argv); //创建播放器实例 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_player_new(IntPtr libvlc_instance); // 释放libvlc实例 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_release(IntPtr libvlc_instance); //获取库版本信息 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern String libvlc_get_version(); // 从视频来源(例如Url)构建一个libvlc_meida RTSP [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_new_location(IntPtr libvlc_instance, IntPtr path); // 从本地文件路径构建一个libvlc_media rtsp串流不适合调用此接口 // [MarshalAs(UnmanagedType.LPStr)] string path [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_new_path(IntPtr libvlc_instance, IntPtr path); /// /// 影片长度 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_player_get_length(IntPtr libvlc_media_player); //释放对象 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_release(IntPtr libvlc_media_inst); // 将视频(libvlc_media)绑定到播放器上 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_set_media(IntPtr libvlc_media_player, IntPtr libvlc_media); //创建(libvlc_media)播放窗口 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_new_from_media(IntPtr libvlc_media_player); // 设置图像输出的窗口 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_set_hwnd(IntPtr libvlc_mediaplayer, Int32 drawable); //播放 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_play(IntPtr libvlc_mediaplayer); //暂停 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_pause(IntPtr libvlc_mediaplayer); //停止 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_stop(IntPtr libvlc_mediaplayer); // 解析视频资源的媒体信息(如时长等) [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_parse(IntPtr libvlc_media); // 返回视频的时长(必须先调用libvlc_media_parse之后,该函数才会生效) [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern Int64 libvlc_media_get_duration(IntPtr libvlc_media); // 当前播放的时间 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern Int64 libvlc_media_player_get_time(IntPtr libvlc_mediaplayer); // 设置播放位置(拖动) [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_set_time(IntPtr libvlc_mediaplayer, Int64 time); /// /// 抓图 /// /// /// 经典0 /// 完整路径,文件名英文或下划线开头 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_video_take_snapshot(IntPtr libvlc_mediaplayer, uint num, IntPtr filePath, uint i_width, uint i_height); //media player release [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_release(IntPtr libvlc_mediaplayer); // 获取音量 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_audio_get_volume(IntPtr libvlc_media_player); //设置音量 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_audio_set_volume(IntPtr libvlc_media_player, int volume); // 设置全屏 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_set_fullscreen(IntPtr libvlc_media_player, int isFullScreen); /// ///判断是否可以录像 /// /// /// //Can the media player record the current media? [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern bool libvlc_media_player_is_recordable(IntPtr libvlc_media_player); /// ///判断是否在录像 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern bool libvlc_media_player_is_recording(IntPtr libvlc_media_player); /// /// 录像开始 /// /// /// 保存路径+文件名(d:\\record (将在D盘根目录保存为record.mp4)) /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_media_player_record_start(IntPtr libvlc_media_player, IntPtr psz_PathFilename); /// /// 录像停止 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_media_player_record_stop(IntPtr libvlc_media_player);
2022-05-09 10:46:12 36.14MB libvlc dll 录像 onvif
1
发一个之前帮人家画的wifi模块,RT5350 芯片 AD格式,雷凌RT5350 wifi模块 原理图pcb截图:
2022-05-08 20:54:07 10.38MB rt5350 电路方案
1
液晶屏TTL信号转LVDS信号,内含转换板原理图与PCB图,使用芯片THC63LVDM83D
2022-05-08 20:34:07 260KB 液晶屏 转换板 原理图 PCB
1