-
msp430-example
关于msp430单片机的源代码,里面有很多比较有用的实例讲解,可以很好的利用,特别是对于初学者,是很好的资料(Msp430 microcontroller on the source code, there are many more examples of useful explanations, can be well used, especially for beginners, is a very good information)
- 2009-09-15 16:37:10下载
- 积分:1
-
CxImage
CxImage类库是一个优秀的图像操作类库。它可以快捷地存取、显示、转换各种图像。
- 2023-08-26 10:50:05下载
- 积分:1
-
用C#编写的BLOG,是个多用户博客网站。很不错的。
用C#编写的BLOG,是个多用户博客网站。很不错的。-With C# Prepared BLOG, is a multi-user blog site. Very good.
- 2022-01-30 12:41:41下载
- 积分:1
-
svd01
实现信号的SVD 分解,对信号中的奇异性进行监测,对突变信号点也可以很好监测(to complete the SVD for signals,Singularity of signal monitoring, signal monitoring point can be very good for mutations)
- 2013-04-25 15:29:30下载
- 积分:1
-
ADS131A02和DAC8552
ADS131A02与DAC8552驱动代码(ADS131A02 and DAC8552 Driver Code)
- 2019-03-20 14:11:58下载
- 积分:1
-
res
1664LED红外控制的定时器,可以通过遥控器远程控制时间的加减、暂停等功能。包括红外解码、红外码值处理(1664LED control program,which can be controled by both IR and keys。)
- 2014-06-17 05:29:26下载
- 积分:1
-
arduino控制超声波模块的使用
利用arduino控制超声波模块测量距离数据
- 2022-10-02 22:50:03下载
- 积分:1
-
AD9833
ad9833的输出程序,单片机为51.基于DDS算法的输出(ad9833 output program, the microcontroller 51. The output of the algorithm based on DDS)
- 2015-08-02 13:56:43下载
- 积分:1
-
C# SQL Server数据库连接
【实例源码】朋友们好,该功能在测试中突然发现,通过Windows身份验证时,服务器IP与数据库值为空的时候,测试连接也会提示连接成功,这个BUG请大家给予帮助,谢谢!using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data;using System.Data.SqlClient;namespace ConData{ public partial class ConnectionData : Form { public ConnectionData() { InitializeComponent(); } private void btnSQLOK_Click(object sender, EventArgs e) { string strcon = string.Format("server={0};database={1};uid={2};pwd={3};", this.txtIP.Text.Trim(), txtDataBase.Text.Trim(), txtUser.Text.Trim(), txtPwd.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strcon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void btnWindowsOK_Click(object sender, EventArgs e) { string strCon = string.Format("server={0};database={1};Trusted_Connection=SSPI", txtWindowsIP.Text.Trim(), txtWindowsDB.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strCon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } }}
- 2014-07-11下载
- 积分:1
-
SymbologyControlColorRamps
简单的ArcGIS Engine示例,适合初学者学习交流使用(A simple example of ArcGIS Engine, suitable for beginners to learn to share their)
- 2009-09-27 10:13:24下载
- 积分:1