-
利用tms32028335产生epwm信号
利用TI公司的TMS32028335DSP内部自带的epwm模块,产生频率和占空比及相位可调的 方波信号,用于控制电机运动。调节占空比,控制电机转速,
- 2022-01-28 15:20:35下载
- 积分:1
-
ListSource列表源控件,主要说明list控件的一个用法
ListSource列表源控件,主要说明list控件的一个用法-ListSource list of source control, mainly to explain usage of a list control
- 2023-08-07 18:55:03下载
- 积分:1
-
MFC平台下的科学计算器
•编写了存值系统,并可以在窗口显示是否存值
•编写了三角函数和反三角函数的运算,其中arcsin、arccos的值要在-1和1之间
• 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论
- 2022-05-23 03:06:41下载
- 积分:1
-
DMA_鹰眼摄像头OV7725串口显示
该资料主要讲的是利用ov7725摄像头进行航拍和循迹,其中采用dma来采集图像,然后通过串口显示采集到的图像,至于之间的配置也是很复杂的。
- 2022-01-26 06:34:19下载
- 积分:1
-
EF Code First简介及一个入门级实例
一、EF Code First简介 EntityFramework 代码优先 二、EF Code First第一个简单实例 1、开发环境及数据库说明 开发环境:Visual Studio 2010 Ultimate sp1 Sql Server 2008 R2 数据库:Northwind 2、实例代码结构 结构说明: App:控制台应用程序 Data:数据访问 Domain:实体类 3、安装Entity Framework 在Visual Studio编辑器中点击Tools -> Library Package Manager -> Package Manager Console,在Package Manager Console窗口中执行下面语句,安装最新版Entity Framework。 PM> Install-Package EntityFramework App层和Data层分别添加对EntityFramework的引用: 在App层安装EntityFramework之后,将自动添加App.config和packages.config文件。 App.config配置Entity Framework版本信息及数据库连接信息,修改其中数据连接信息以适应本地实际环境。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 packages.config现实当前项目使用的package: 1 2 3 4 4、实例代码 Domain中Category.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Northwind.Domain.Entities 7 { 8 public class Category 9 { 10 /// 11 /// 分类ID 12 /// 13 public int CategoryID { get; set; } 14 15 /// 16 /// 分类名称 17 /// 18 public string CategoryName { get; set; } 19 } 20 } Data中NorthwindContext.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.Data.Entity; 7 8 using Northwind.Domain.Entities; 9 10 namespace Northwind.Data 11 { 12 public class NorthwindContext : DbContext 13 { 14 public DbSet Categories { get; set; } 15 } 16 } App中Program.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using Northwind.Data; 7 using Northwind.Domain.Entities; 8 9 namespace Northwind.App 10 { 11 class Program 12 { 13 static void Main(string[] args) 14 { 15 Category c = new Category() { CategoryName = "电子数码" }; 16 17 using (NorthwindContext db = new NorthwindContext()) 18 { 19 db.Categories.Add(c); 20 db.SaveChanges(); 21 } 22 23 Console.WriteLine("Finish"); 24 Console.ReadKey(); 25 } 26 } 27 } 5、运行说明 由于在上面的数据库连接字符串中并未包含指定的数据库名称,运行成功之后,将在本地数据引擎中创建如下数据库和表: 数据库名称:Northwind.Data.NorthwindContext 表名称:Categories 6、示例代码附件
- 2014-04-22下载
- 积分:1
-
浏览器,应用的是微软的内核
类似浏览器的一个ap
- 2022-04-08 16:29:10下载
- 积分:1
-
asp.net 笔记本电脑在线销售系统源码(含数据库)
该系统为一笔记本电脑在线销售系统,功能简单后台主要功能有: 订单管理: 未处理的订单 已处理的订单 今天的新订单 商品管理: 商品分类管理 添加新商品 编辑商品信息 系统管理: 商品促销信息 网站新闻管理 商品评论管理 客户反馈管理 统计调查管理 用户管理: 客户档案管理 更改管理员密码
- 2020-03-07下载
- 积分:1
-
S8-1
设计一个窗体,上面布置一个Picture控件和两个命令按钮(标题为“装载”和“保存”),试按以下功能要求完成设计:
(1) 程序运行,单击“装载”按钮,弹出一个文件打开对话框,从中选择一个图像文件,确定后该图像文件内容被装载到Picture控件内显示;
(2)Picture控件有图像输出的情况下,单击“保存”按钮,弹出一个文件夹选择对话框,从中选择有效文件夹,确定后Picture控件内容会被保存到该文件夹里,文件命名为pNew.jpg(或bmp)。
(Design a form, which arranged a Picture control and two command buttons (titled "Load" and "save"), try to complete the design according to the following functional requirements:
(1) program runs, click "Load" button to pop up a File Open dialog box, select an image file, to determine the contents of the file after the image is loaded into the Picture control in display
(2) Picture control has an image output in the case, click the "Save" button, pop-up a folder selection dialog box, select valid folder, after the Picture control to determine the contents will be saved to the folder, the file named pNew.jpg (or bmp).
)
- 2020-10-31 11:29:55下载
- 积分:1
-
opencv实现图像的形态学滤波之腐蚀
通过形态学滤波操作,能够实现如下功能:消除噪声、分割独立的图像元素、在图像中连接相邻的元素、寻找图像中明显的极大值区域或极小值区域、求出图像的梯度
- 2022-05-22 02:57:35下载
- 积分:1
-
飞思卡尔智能车摄程序头0v7725
基于硬件二值化的摄像头ov7725程序,使用时改动其中的k60管脚即可,需配合上位机使用以及蓝牙串口,连接电脑后即可看到赛道图像,本资源进攻交流学习用,禁止用于商业用途。
- 2022-02-01 14:00:48下载
- 积分:1