虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

TF-card

  • 磁卡读写机

    磁卡读写器可以联接任何具有RS232串口的电脑或终端,用于读写磁卡或存折本上的磁条信息。磁卡读写器操作非常简单,具有读、写双重校验功能,读写卡均可一次性完成。磁卡读写器可广泛用于金融、邮电、交通、海关等各个领域,特别是银行系统的信用卡发行、磁卡和银行柜台的存折的磁条读写。  磁卡(magnetic card)是利用磁性载体记录了一些信息,用来标识身份或其它用途的卡片。视使用基材的不同,磁卡可分为 PET卡、 PVC卡和纸卡三种;视磁层构造的不同,又可分为磁条卡和全涂磁卡两种。

    标签: 磁卡 读写

    上传时间: 2016-11-04

    上传用户:kpzzk

  • IEC62055

    Standard transfer specification (STS) –Physical layer protocol for one-way numeric and magnetic card token carriers .

    标签: 62055 IEC AMI

    上传时间: 2017-02-04

    上传用户:aarons大叔

  • stm32最小系统

    尚学科技stm32原理图,stm32f103zet6最小系统板,串口,tf卡,tft液晶屏。

    标签: stm 32 最小系统

    上传时间: 2019-12-06

    上传用户:wenhui

  • Essentials+of+Short-Range+Wireless

    Over the past ten years there has been a revolution in the devel- opment and acceptance of mobile products. In that period, cel- lular telephony and consumer electronics have moved from the realm of science fiction to everyday reality. Much of that revolu- tion is unremarkable – we use wireless, in its broadest sense, for TV remote controls, car keyfobs, travel tickets and credit card transactions every day. At the same time, we have increased the number of mobile devices that we carry around with us. However, in many cases the design and function of these and other static products are still constrained by the wired connections that they use to transfer and share data.

    标签: Short-Range Essentials Wireless of

    上传时间: 2020-05-27

    上传用户:shancjb

  • Short-Range+Wireless

    Over the past ten years there has been a revolution in the devel- opment and acceptance of mobile products. In that period, cel- lular telephony and consumer electronics have moved from the realm of science fiction to everyday reality. Much of that revolu- tion is unremarkable – we use wireless, in its broadest sense, for TV remote controls, car keyfobs, travel tickets and credit card transactions every day. 

    标签: Short-Range Wireless

    上传时间: 2020-06-01

    上传用户:shancjb

  • Home+Automation+Projects

    You probably have heard all about what you can do with the Raspberry Pi. This credit- card sized computer can be plugged into your TV or any HDMI monitor to replace a typical computer. This little device is used in many computer projects, DIY electronics projects and even as a learning tool for kids who want to learn the basics of computer programming.

    标签: Automation Projects Home

    上传时间: 2020-06-06

    上传用户:shancjb

  • Digital+Signal+Processing+for+RFID

    Identification is pervasive nowadays in daily life due to many complicated activities such as bank and library card reading, asset tracking, toll collecting, restricted access to sensitive data and procedures and target identification. This kind of task can be realized by passwords, bio- metric data such as fingerprints, barcode, optical character recognition, smart cards and radar. Radiofrequencyidentification(RFID)isatechniquetoidentifyobjectsbyusingradiosystems. It is a contactless, usually short distance, wireless data transmission and reception technique for identification of objects. An RFID system consists of two components: the tag (also called transponder) and the reader (also called interrogator).

    标签: Processing Digital Signal RFID for

    上传时间: 2020-06-08

    上传用户:shancjb

  • I2C热插拔和SMBus缓冲器

    The NCA9511 is a hot-swappable I2C bus buffer that  supports I/O card insertion into a live backplane without  corruption of the data and clock buses.

    标签: SMBus I2C 热插拔 缓冲器

    上传时间: 2021-01-26

    上传用户:

  • FPGA读写SD卡读取BMP图片通过LCD显示例程实验 Verilog逻辑源码Quartus工程文件

    FPGA读写SD卡读取BMP图片通过LCD显示例程实验 Verilog逻辑源码Quartus工程文件+文档说明,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。1 实验简介在前面的实验中我们练习了 SD 卡读写,VGA 视频显示等例程,本实验将 SD 卡里的 BMP 图片读出,写入到外部存储器,再通过 VGA、LCD 等显示。本实验如果通过液晶屏显示,需要有液晶屏模块。2 实验原理在前面的实验中我们在 VGA、LCD 上显示的是彩条,是 FPGA 内部产生的数据,本实验将彩条替换为 SD 内的 BMP 图片数据,但是 SD 卡读取速度远远不能满足显示速度的要求,只能先写入外部高速 RAM,再读出后给视频时序模块显示module top( input                       clk, input                       rst_n, input                       key1, output [5:0]                seg_sel, output [7:0]                seg_data, output                      vga_out_hs,        //vga horizontal synchronization output                      vga_out_vs,        //vga vertical synchronization output[4:0]                 vga_out_r,         //vga red output[5:0]                 vga_out_g,         //vga green output[4:0]                 vga_out_b,         //vga blue output                      sd_ncs,            //SD card chip select (SPI mode) output                      sd_dclk,           //SD card clock output                      sd_mosi,           //SD card controller data output input                       sd_miso,           //SD card controller data input output                      sdram_clk,         //sdram clock output                      sdram_cke,         //sdram clock enable output                      sdram_cs_n,        //sdram chip select output                      sdram_we_n,        //sdram write enable output                      sdram_cas_n,       //sdram column address strobe output                      sdram_ras_n,       //sdram row address strobe output[1:0]                 sdram_dqm,         //sdram data enable output[1:0]                 sdram_ba,          //sdram bank address output[12:0]                sdram_addr,        //sdram address inout[15:0]                 sdram_dq           //sdram data);parameter MEM_DATA_BITS         = 16  ;            //external memory user interface data widthparameter ADDR_BITS             = 24  

    标签: fpga

    上传时间: 2021-10-27

    上传用户:

  • STM32L475开发板PDF原理图+AD集成3D封装库+主要器件技术手册

    STM32L475开发板PDF原理图+AD集成3D封装库+主要器件技术手册,集成封装库型号列表如下:Library Component Count : 44Name                Description----------------------------------------------------------------------------------------------------ANT-2.4G            ANT,2.4G,PCB天线ATK-TEST-1*4-2.54mm 测试点ATK_MODULE          单排母,1*6,2.54mmBEEP                3.3V有源蜂鸣器BUTTON_DIP3         拨动开关SS-12F44C-0402-SMD          C-0603-SMD          C-CAP-SMD-220uF/10V C-CEP-220uF/16V     D-1N4148            Header-1*3-2.54mm   单排针-2.54mmHeader-2*10-2.54mm  双排针-2.54mmHeader-2*2-2.54mm   双排针-2.54mmHeader-2*3-2.54mm   双排针-2.54mmHeader-2*4-2.54mm   双排座-2.54mmIR-LED              1206红外发射管(侧)IR-LF0038GKLL-1     红外接收管SMDJ-MICRO-USB-5S      Micro USB 5.9有柱脚长1.25加长针L-0420-4.7uH        电感,4.7uH,3ALCD-TFT-H13TS38A    LCD,TFT,1.3'240*240,禹龙LED-0603-RED        发光二极管-红色LED-RGB-1615-0603   RGB,共阳,1615,0603MIC-6022            MICMotor-SMD           电机,SMDPhone-3-M           耳机座,三节R-0402-SMD          贴片电阻R-0805-SMD          贴片电阻RT9193-3.3S-KEY-SMD-324225    KEY,SMD,324225S8050-SMD           SD-MICRO-TF         SD,MICRO,TFU-AHT10             Sensor,温湿度传感器U-AP3216C           Sensor.光照/距离U-AP6181            WIFI Module,SDIOU-ES8388            AUDIO,2-ch DAC,2-ch ADCU-ICM-20608         三轴陀螺仪/三轴加速度计,U-L9110S            电机驱动,800mAU-RT9013-3.3        LDO,500mAU-STM32F103C8T6     U-STM32L475VET6     MCU,LQFP100,512K FLASH,128K RAMU-W25Q128           SPI FLASH,16MY-12M-SMD           晶振 - 12M贴片Y-3215-32.768K      XTAL,3215,32.768KY-3215-8M           XTAL,3215,8MHz

    标签: stm32l475 开发板

    上传时间: 2021-12-15

    上传用户: