-
ECG Scanner R peaks detect basing on QRS
Electrocardiography (ECG or EKG) scanner to detect R peaks and heart failure based on the QRS algorithm written in C.
The main goal of this project is to learn the programming language C but also the benifits by using a low level language to optimize and make better performing software.
- 2022-01-26 01:35:56下载
- 积分:1
-
对c#中的基本控件的基本用法的举例,帮助初学者了解其用法
对c#中的基本控件的基本用法的举例,帮助初学者了解其用法-Pairs of the basic controls c# basic usage examples to help beginners understand their usage
- 2022-06-19 17:06:44下载
- 积分:1
-
本教程以手把手的方式,通过简单实例入手,层层深入,对C#语言进行了详细而全面地讲解。本教程面向的对象为:1、看过一些初级C#教程,对基本语法,三大结构理解没有困...
本教程以手把手的方式,通过简单实例入手,层层深入,对C#语言进行了详细而全面地讲解。本教程面向的对象为:1、看过一些初级C#教程,对基本语法,三大结构理解没有困难的人员。2、学习过其它语言,想转入到C#进行学习的人员。-The Guide to hands-on approach, starting with a simple example, layers of depth on the C# Language in detail and comprehensively explain. The object-oriented tutorial for: 1, read some of the primary C# Tutorial on basic grammar, the three have no difficulty in understanding the structure of personnel. 2, learning other languages, I would like to shift to the C# Learning personnel.
- 2022-01-24 13:52:11下载
- 积分:1
-
HDMI ADV7612寄存器初始化代码,可以支持36位RGB图像采集,支持1080P
很好的HDMI图像采集芯片资料,帮助初学者
- 2022-02-13 21:33:45下载
- 积分:1
-
NeatUpload大文件上传例子,有进度条
NeatUpload大文件上传例子,有进度条
- 2015-06-18下载
- 积分:1
-
数据库实现订单管理系统
利用C#界面和SQL Server相结合的方式实现一个订单管理系统
- 2022-03-24 06:50:02下载
- 积分:1
-
一个简单的计算器
int main () 字符 o;printf ("Enteroperator 或 + 或-或 * 或鸿沟:") ;printf ("Entertwo 操作数:") ;switch(o) {printf ("%.1f + %.1f = %.1f",num1,num2,num1 + num2) ; 案例 "-": 休息 ; printf ("%.1f * %.1f = %.1f"num1,num2,num1 * num2) ;案例 "/ ": 断裂 ;/ * 如果运算符以外 +、-、 * 或 / 显示错误消息 * / 断裂 ;返回 0 ;< 跨风格 ="字体-搜索 ; 字体系列:"">}
- 2023-05-09 12:25:03下载
- 积分:1
-
随便的东西!只是要下载一个东西所以就随便传了一个上来
随便的东西!只是要下载一个东西所以就随便传了一个上来-Random things! Just want to download a thing so easily passed on a table! !
- 2023-04-24 14:45:04下载
- 积分:1
-
C# 实现 MD5加密解密算法
using System.Security.Cryptography;using System.IO; using System.Text; ///MD5加密 public string MD5Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt); des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(),CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); StringBuilder ret = new StringBuilder(); foreach(byte b in ms.ToArray()) { ret.AppendFormat("{0:X2}", b); } ret.ToString(); return ret.ToString(); } ///MD5解密 public string MD5Decrypt(string pToDecrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = new byte[pToDecrypt.Length / 2]; for(int x = 0; x < pToDecrypt.Length / 2; x ) { int i = (Convert.ToInt32(pToDecrypt.Substring(x * 2, 2), 16)); inputByteArray[x] = (byte)i; } des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(),CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); StringBuilder ret = new StringBuilder(); return System.Text.Encoding.Default.GetString(ms.ToArray()); }
- 2013-11-13下载
- 积分:1
-
MS5611资料
#include
#define BME280_ADDRESS 0x76
unsigned long int hum_raw,temp_raw,pres_raw;
signed long int t_fine;
uint16_t dig_T1;
int16_t dig_T2;
int16_t dig_T3;
uint16_t dig_P1;
int16_t dig_P2;
int16_t dig_P3;
int16_t dig_P4;
int16_t dig_P5;
int16_t dig_P6;
int16_t dig_P7;
int16_t dig_P8;
int16_t dig_P9;
int8_t dig_H1;
int16_t dig_H2;
int8_t dig_H3;
int16_t dig_H4;
int16_t dig_H5;
int8_t dig_H6;
void setup()
{
uint8_t osrs_t = 1; //Temperature oversampling x 1
uint8_t osrs_p = 1; //Pressure oversampling x 1
uint8_t
- 2022-03-01 22:12:36下载
- 积分:1