-
UHF_Reader_protocol
UHF读写器读写器简介
本产品具有多协议兼容、体积小、读取速率快、多标签识读、圆极化天线对标签没有方向限制、防水型外观设计等优点,可广泛的应用于各种RFID系统中,典型的应用场合有:
(UHF reader reader Introduction The product is compatible with multi-protocol, small volume, read rate, and multi-tag read, circularly polarized antenna on the label does not limit the direction, waterproof design, etc., can be widely used in a variety of RFID systems, typical applications are: )
- 2011-10-17 00:59:20下载
- 积分:1
-
ex1
it is the best solution of this exercise.You can use it or can download another exercise, never mind.So i wish you good luck and heavy health
- 2012-11-25 22:30:53下载
- 积分:1
-
C#以二进制格式打开和保存文件
C#使用BinaryWriter、BinaryReader对象分别保存和读取二进制文件,程序分两部分,先来看第一部分:
C#以二进制格式保存文件:设置保存文件的格式:
saveFileDialog1.Filter = "二进制文件(*.dat)|*.dat";
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
//使用“另存为”对话框中输入的文件名实例化FileStream对象
FileStream myStream = new FileStream(saveFileDialog1.FileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);
//使用FileStream对象实例化BinaryWriter二进制写入流对象
BinaryWriter myWriter = new BinaryWriter(myStream);
//以二进制方式向创建的文件中写入内容
myWriter.Write(textBox1.Text);
//关闭当前二进制写入流
myWriter.Close();
//关闭当前文件流
myStream.Close();
textBox1.Text = string.Empty;
}
打开文件时同样也是以二进制来打开读取文件内容:
//设置打开文件的格式
openFileDialog1.Filter = "二进制文件(*.dat)|*.dat";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = string.Empty;
//使用“打开”对话框中选择的文件名实例化FileStream对象
FileStream myStream = new FileStream(openFileDialog1.FileName, FileMode.Open, FileAccess.Read);
//使用FileStream对象实例化BinaryRea
- 2022-02-14 18:03:07下载
- 积分:1
-
六路ADC测量 - DMA
基于stm32f407的adc采样程序,其中有adc1的5个通道和adc2的1个通道,采样的数据通过dma发送给主函数的变量。基于stm32f407的adc采样程序,其中有adc1的5个通道和adc2的1个通道,采样的数据通过dma发送给主函数的变量
- 2022-10-07 15:45:02下载
- 积分:1
-
无损压缩中的熵编码
用c语言编写的无损压缩中的熵编码的编码和解码程序!
很实用的!(prepared by the lossless compression of the entropy coding coding and decoding process! Very practical!)
- 2005-08-28 15:42:10下载
- 积分:1
-
dspbldc
直流无刷电机双闭环DSP控制程序的完整流程以及注意事项(BLDC bouble loop design)
- 2020-11-18 16:19:39下载
- 积分:1
-
如何获取屏幕上各颜色的红、绿、蓝值
如何获取屏幕上各颜色的红、绿、蓝值(how to access the colors on the screen in red, green and blue values)
- 2004-11-22 15:31:50下载
- 积分:1
-
acoustic
交错网格声波方程交错网格有限差分地震波场计算波场正演模拟。
(The CalCulation of the SeismiC Wave一 fieldwith
Staggered-grid Finite difference Sheme
)
- 2010-09-19 15:53:45下载
- 积分:1
-
DBC读取_example
读取DBC,发送和接收CAN信号。。。。。。。。。(Read DBC, send and receive CAN signals)
- 2018-05-08 08:18:16下载
- 积分:1
-
DTMF产生
DTMF软件包,用于产生DTMF型号,可调整参数。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2022-01-26 06:02:29下载
- 积分:1