RD-400 USB Magnetic Stripe Card Reader (RD-400) [S171]




https://www.youtube.com/watch?v=ZYjTXQ7LQro




* Specs

Card standard: ISO7811-7815

Decoded mode: F2F(FM)

Swipe speed: 0-120cms

Head life: 600000times

Export export: Imitation XT, AT RS - 232 USB keyboard format

Identifiable decoding system: Code39 Code93 UPCEAN Codeabar Interleaved 2 of 5 Code128 Full ASCII Code39

Power: DC+5V 35mA

Use: Main supermarket.


Reading/writing magnetic stripe cards complies with ISO 7811 / 1~6 formats

Manual Swipe to read and/or write cards with PC standard RS-232 interface

Read/Write High and Low Coercive force of magnetic stripe (300~4000Oe)

5~35ips operational swipe speed of writing data

5~55ips operational swipe speed of reading data

+24VDC+/-10%, 2.0A Max., external power adapter attached

Writing and verifying data on single, dual, or triple track in one swipe

Programming software included for various read/write applications

Program software for DOS and Windows 98/Me

High/Low Coercivity encoding circuitry selectable on screen

Programmable leading bit, raw data, DMV/AAMVA, and user defined format

Compact size with dimensions of 90(L) x 26(W) x28(H) mm

Posted by RDIoT
|

USB Smart IC Card Reader [S204]



https://www.youtube.com/watch?v=RzknIMEdmhc


* Specs

This USB interface PC/SC Smart Card Reader reads both IC/ID card within a single device. With this integrated device, you can easily use your IC/ID card to pass the identification gate for e-commercial needs and maintain the mobile phone information of your SIM card


1) Support the Universal Serial Bus Specification

2) Compliance with Microsoft PC/SC specification and Plug-and-Play

3) Support Microsoft Smart Card for Windows

4) Windows 98SE/ME/2000/XP/VISTA, Windows 7, Windows 8; MAC 10.7 and above version, Linux

5) Power Supply: USB Powered

6) USB Type: USB 2.0 (1.1 Compatible)

7) IC Card (Smart Card): SLE4418/4428, SLE4432/4442, SLE4436/5536, 12C, Support 3V/5V IC Smart Card

OEM are Welcome! we can print customer's artwork and logo

'2) Sensor > SmartCard' 카테고리의 다른 글

SIM,USIM,LTE,CCID Card Reader Writer Tool [S206]  (3) 2016.09.17
Posted by RDIoT
|

ADXL335 3-axis Accelerometer (GY-61) [S057]



https://www.youtube.com/watch?v=VhsJ0hoZzxo


*GitHubhttps://github.com/rdiot/rdiot-s057.git


* Specs

This is a very low cost break out module for the ADXL335 tripple axis accelerometer. This module includes optional header pins and provides easy access to the X, Y and Z axis analogue outputs from the accelerometer. 

It is capable of sensing forces up to 3g in all axis. A 3.3V on-board regulator is also provided allowing the module to be powered from a 3.3 to 5V power supply source.


Model number: HCMODU0070

Supply Range: 3V ~ 5V

3 Axis sensing

Full scale range: +/-3g

Sensitivity: 300mV/g (Typ)

Pinout, schematic and datasheet available after purchase.


* Contents

- Connect

Arduino Uno 

3.3V ----- VCC 

      ----- AREF

ADXL335 

VCC ----- 3.3V 

X-OUT ----- A0 

Y-OUT ----- A1 

Z-OUT ----- A2 

GND ----- GND


- Key Code

#include <Wire.h> 

#include <LiquidCrystal_I2C.h>

 

LiquidCrystal_I2C lcd(0x27,20,4);  // LCD2004

const int xpin = A0;                  // x-axis of the accelerometer

const int ypin = A1;                  // y-axis

const int zpin = A2;                  // z-axis (only on 3-axis models)

 

void setup()

{

  lcd.init();  // initialize the lcd 

  lcd.backlight();

  lcd.print("start LCD2004");

 

  analogReference(EXTERNAL);

  pinMode(xpin, INPUT);

  pinMode(ypin, INPUT);

  pinMode(zpin, INPUT);

 

  delay(1000);

 

  lcd.clear();

}

 

void loop()

{

 

  lcd.setCursor(0,0);

  lcd.print("S057:ADXL335 3axisA");

 

  int x = analogRead(xpin);

    delay(1);

  int y = analogRead(ypin);

    delay(1);

  int z = analogRead(zpin);

  //zero_G is the reading we expect from the sensor when it detects

  //no acceleration.  Subtract this value from the sensor reading to

  //get a shifted sensor reading.

  float zero_G = 512.0;

  

  //scale is the number of units we expect the sensor reading to

  //change when the acceleration along an axis changes by 1G.

  //Divide the shifted sensor reading by scale to get acceleration in Gs.

  float scale = 102.3;

 

  float xp = ((float)x - zero_G)/scale;

  float yp = ((float)y - zero_G)/scale;

  float zp = ((float)z - zero_G)/scale;

 

  lcd.setCursor(0,1);

  lcd.print("ax="+ (String)x +" x=" + (String)xp);

 

  lcd.setCursor(0,2);

  lcd.print("ay="+ (String)y +" y=" + (String)yp);

 

  lcd.setCursor(0,3);

  lcd.print("az="+ (String)z +" z=" + (String)zp);

 

  delay(500); 

}

Posted by RDIoT
|