-
CAN-bus
该文件讲解了CAN-BUS的开发步骤,有利于OBD和单片机的开发,以及一些相关的东西(The file to explain the development of the CAN-BUS steps conducive to the development of OBD and microcontroller, as well as some of the things)
- 2013-03-18 15:27:12下载
- 积分:1
-
STM32F4-OLED-OV7725
说明: 实现板球控制,用stm32f407开发板,通过OV7725采集图像,然后在lcd上显示结果。(To achieve cricket control, we use STM32F407development board to collect images through OV7725, and then display the results on LCD.)
- 2020-09-20 15:57:58下载
- 积分:1
-
Radar
将雷达数据转换为坐标数据 文件的输入与输出(Radar data will be converted to coordinate data file input and output)
- 2009-05-13 13:59:37下载
- 积分:1
-
蓝桥杯比赛实验例程
按键检测、矩阵键盘、蓝牙、液晶显示器、数码管、继电器、蜂鸣器、数字模拟转换,ADC、555定时器、热敏电阻、光敏电阻、eeprom24c02等等例程,通过这些例程可以大幅提高比赛的获奖率,只需要读者认真练习,获奖不是梦想
- 2022-03-10 00:18:09下载
- 积分:1
-
matlabwatershedcode
分水岭分割在matlab下实现,希望大家多提意见。(watershed segmentation in Matlab achieve, we hope to do so.)
- 2007-05-09 08:51:10下载
- 积分:1
-
Hamming_Code
查表法计算汉明码,适用于DSP28335(calculate hamming code by table look-up method)
- 2017-07-03 10:49:22下载
- 积分:1
-
lvxingshe
一个之前用过的旅行社网站源码,现在发出来供大家学习用。(A travel agency website source previously used, issued to for everyone to learn.)
- 2012-09-05 15:17:21下载
- 积分:1
-
关于datagridview控件的简单例子,更容易理解一些
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;namespace DataGridViewSample{ public partial class Form1 : Form { public static List Tests = new List(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.dataGridView1.DataSource = Tests; } private void button1_Click(object sender, EventArgs e) { frmAdd form = new frmAdd(null); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } private void button2_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows != null) { frmAdd form = new frmAdd(new Test( Convert.ToInt32(this.dataGridView1.SelectedRows[0].Cells[0].Value), Convert.ToDecimal(this.dataGridView1.SelectedRows[0].Cells[1].Value), Convert.ToDateTime(this.dataGridView1.SelectedRows[0].Cells[2].Value), this.dataGridView1.SelectedRows[0].Cells[3].Value.ToString())); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } } private void button3_Click(object sender, EventArgs e) { //使用前面示例中的代码,用DataGridView或者List来做导出都是可以的 } } public class Test { public Test(int id, decimal voltage, DateTime record, string remark) { ID = id; Voltage = voltage; Record = record; Remark = remark; } public int ID { get; set; } public decimal Voltage { get; set; } public DateTime Record { get; set; } public string Remark { get; set; } }}
- 2015-06-11下载
- 积分:1
-
1123sdfs
单片机初学者资料 51单片机C语言编程入门(详讲版)(Singlechip beginners
)
- 2013-12-01 20:24:19下载
- 积分:1
-
vibeforpi
ViBE背景建模算法,从
PC上移植改编,可在嵌入式上运行,效率较高(ViBE background modeling algorithm, coded PC to imbeded. )
- 2020-12-02 10:59:25下载
- 积分:1