SA828 is an all-in-one professional walkie-talkie module in small size. It is very easy to use with powerful function. This module has full function of a professional walkie-talkie and can talk with any analog walkie-talkie in the market. With the small size, it can be easily embedded into instrument, portable and handheld device. SA828 works well in the hot/cold environment with the KDS 1PPM TCXO. The features of excellent antenna match network, good RF amplifier, high RF sensitivity allow its communication easily to achieve over 3Km in open area.
Rotary switch for channel selection, EEPROM, Audio Amplifier, RF Amplifier, PTT key, Antenna socket are all included in such a small size module. Besides, all parameters (CTCSS, CDCSS, SQ, Predefined channels etc) can be easily modified either by PC software or command using UART interface. With the embedded audio volume turning circuit, user can only solder a variable resistor on Pin16, Pin17 to adjust the volume steplessly.
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
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.
Measuring the absolute pressure of the enviroment using a digital barometer such as this has some interesting applications. By converting the pressure measured into altitude, you have a reliable sensor for determining the height of your robot, plane or projectile!
Using a sensor as capable as the BMP180 you can achieve accurary of 1m, with noise of only 17cm in ultra high resolution noise. The device will operate at only 0.3uA meaning low current draw for battery powered applications.
The BMP180 comes fully calibrated and ready to use. As the device operates over I2C we've added optional I2C pull ups that can be enabled using the PU (pull up) jumper on the board for your convenience and ease during breadboarding.
Using I2C, the device provides pressure and temperature as 16bit values, which are used along with calibration data within the device are used to provide a temperature compensated altitude calculation.
This device is really easy to use, if your thinking of using it with an then you need to check out our BMP180 tutorial!
Features:
1.8V to 3.6V Supply Voltage
Low power consumption - 0.5uA at 1Hz
I2C interface
Max I2C Speed: 3.5Mhz
Very low noise - up to 0.02hPa (17cm)
Full calibrated
Pressure Range: 300hPa to 1100hPa (+9000m to -500m)
Weight: 1.18g
Size: 21mm x 18mm
* Contents
- Connect
VIN ----- 5V
GND ------ GND
SCL ----- A5
SDA ----- A4
- Library : https://github.com/jrowberg/i2cdevlib
: Sample Test : BMP085, I2Cdev
- Key Code
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4); // LCD2004
// Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation
// is used in I2Cdev.h
#include "Wire.h"
// I2Cdev and BMP085 must be installed as libraries, or else the .cpp/.h files
// for both classes must be in the include path of your project
#include "I2Cdev.h"
#include "BMP085.h"
// class default I2C address is 0x77
// specific I2C addresses may be passed as a parameter here
// (though the BMP085 supports only one address)
BMP085 barometer;
float temperature;
float pressure;
float altitude;
int32_t lastMicros;
#define LED_PIN 13 // (Arduino is 13, Teensy is 11, Teensy++ is 6)
bool blinkState = false;
void setup()
{
lcd.init(); // initialize the lcd
lcd.backlight();
lcd.print("start LCD2004");
// join I2C bus (I2Cdev library doesn't do this automatically)
Wire.begin();
barometer.initialize();
pinMode(LED_PIN, OUTPUT);
delay(1000);
lcd.clear();
}
void loop()
{
lcd.setCursor(0,0);
lcd.print("S074:BMP180");
// request temperature
barometer.setControl(BMP085_MODE_TEMPERATURE);
// wait appropriate time for conversion (4.5ms delay)
lastMicros = micros();
while (micros() - lastMicros < barometer.getMeasureDelayMicroseconds());
// read calibrated temperature value in degrees Celsius
temperature = barometer.getTemperatureC();
// request pressure (3x oversampling mode, high detail, 23.5ms delay)
barometer.setControl(BMP085_MODE_PRESSURE_3);
while (micros() - lastMicros < barometer.getMeasureDelayMicroseconds());
// read calibrated pressure value in Pascals (Pa)
pressure = barometer.getPressure();
// calculate absolute altitude in meters based on known pressure
// (may pass a second "sea level pressure" parameter here,
// otherwise uses the standard value of 101325 Pa)
Working temperature: -20 to 55 degree, humidity of 90%
Erase times : > 100000 times
Data storage: > 10 years
Reading time: 100000 times
Diameter: 27mm
Packaging materials: PE self-adhesive + coated paper
Compatiability:
1) Support 13.56mhz RFID and NFC IC reader/writer, For example:Acr122u reader/writer
2) Support Smart mobile phones with NFC function.
Brand Smart phone: Sony, HTC, Samsung, Nokia, LG include blackberry,Nokia Lumia, Nexus4/10,Galaxy S4,and other mobile phone could support NFC function.
Andriod system Phone could download the NFC software, such as the Google play NFC Task Launcher, NFC ReTag Pro Security Software.
Application:
Check in, mobile payment, product information query, mobile identification, mobile marketing, social networking, business card sharing, access control, membership management, posters, healthcare,book borrowing etc.
PN532 is high-quality and reliable module that enables RFID and NFC communication with external devices:
cards, smart phones etc. NFC itself supports two-way communication and data exchange, so possibilities are numerous. It connects with Croduino/Arduino through IIC or SPI communication.
The MFRC522 is a highly integrated reader/writer IC for contactless communication at 13.56 MHz. The MFRC522 reader supports ISO/IEC 14443 A/MIFARE and NTAG.
The MFRC522’s internal transmitter is able to drive a reader/writer antenna designed to communicate with ISO/IEC 14443 A/MIFARE cards and transponders without additional active circuitry. The receiver module provides a robust and efficient implementation for demodulating and decoding signals from ISO/IEC 14443 A/MIFARE compatible cards and transponders. The digital module manages the complete ISO/IEC 14443 A framing and error detection (parity and CRC) functionality.
The MFRC522 supports MF1xxS20, MF1xxS70 and MF1xxS50 products. The MFRC522
supports contactless communication and uses MIFARE higher transfer speeds up to 848 kBd in both directions.
Highly integrated analog circuitry to demodulate and decode responses
Buffered output drivers for connecting an antenna with the minimum number of
external components
Supports ISO/IEC 14443 A/MIFARE and NTAG
Typical operating distance in Read/Write mode up to 50 mm depending on the
antenna size and tuning
Supports MF1xxS20, MF1xxS70 and MF1xxS50 encryption in Read/Write mode
Supports ISO/IEC 14443 A higher transfer speed communication up to 848 kBd
Supports MFIN/MFOUT
Additional internal power supply to the smart card IC connected via MFIN/MFOUT
Supported host interfaces
SPI up to 10 Mbit/s
2C-bus interface up to 400 kBd in Fast mode, up to 3400 kBd in High-speed mode
RS232 Serial UART up to 1228.8 kBd, with voltage levels dependant on pin
voltage supply
FIFO buffer handles 64 byte send and receive
Flexible interrupt modes
Hard reset with low power function
Power-down by software mode
Programmable timer
Internal oscillator for connection to 27.12 MHz quartz crystal
8. Working: 5CM Something is blocking the sensor head, The first wave open output,Second waved off the output. The third wave open output, Continuous cycle
Output interface: 6 wire interface (1234 to 4 signal output ends, + positive power, - for the negative power is ground)
The output signal: TTL level (can be directly connected to I/0 microcontroller, infrared light reflected back to the sensor induction, the red indicator light, output low level; no infrared light, the indicator light does not shine, the output high.)
This is an infrared transmitter very useful for any IR communication for your project. Infrared is a common, inexpensive, and easy to use wireless communication technology.
the module is ready to be connected to an MCU such as an Arduino.
It has two led transmitter to add visibility and an indicator led that shows when the module is transmitting.
The ENC28J60 Ethernet Module utilizes the new Microchip ENC28J60 Stand-Alone Ethernet Controller IC featuring a host of features to handle most of the network protocol requirements. The board connects directly to most microcontrollers with a standard SPI interface with a transfer speed of up to 20MHz.
ENC28J60 Ethernet chips, SOP28 package
SPI Interface
2X5 connector, can be easily mounted with the MCU
Power indicator
Single Supply: +3.3 V
PCB size: 55x36 mm
* Contents
- Connect (Uno)
VCC - 3.3V
SCK - Pin 13
SO - Pin 12
SI - Pin 11
CS - Pin 8 # Selectable with the ether.begin() function
GND - GND
- Connect (Mega)
VCC - 3.3V
GND - GND
SCK - Pin 52
SO - Pin 50
SI - Pin 51
CS - Pin 53 # Selectable with the ether.begin() function
# The default CS pin defaults to 8, so you have to set it on a mega:
Support PC Smart Card industry standard ? PC/SC 2.0
Support Microsoft Smart Card for Windows
Meet Microsoft WHQL USB Smart Card Reader requirements
Meet US Federal Information Processing Standards (FIPS) Publication 201 requirements on smart card reader interoperability
Support single slot
Support T0, T1 protocol
Support I2C memory card, SLE4418, SLE4428, SLE4432, SLE4442, SLE4436, SLE5536, SLE6636, AT88SC1608, AT45D041 card and AT45DB041 card via external EEPROM
Support ISO7816 Class A, B and C (5V/3V/1.8V) card
Implemented as an USB full speed device with bulk transfer endpoint, Mass Storage endpoint
Built-in PLL for USB and Smart Card clocks requirement
Support EEPROM for USB descriptors customization (PID/VID/ iManufacturer/ iProduct/Serial Number), Direct Web Page Link, and accessing memory card module.
EEPROM programmable via USB interface
Support software update for memory card module
Support Direct Web Page Link via configuration in external EEPROM
Support short APDU and extended APDU
Compatible with Microsoft USB-CCID driver
Support remote wake up through inserting card/removing card
Support USB selective suspend
Support Power Saving Mode (Using one pin to select between Normal/PWR Saving Mode)
Heart rate data can be really useful whether you’re designing an exercise routine, studying your activity or anxiety levels or just want your shirt to blink with your heart beat. The problem is that heart rate can be difficult to measure. Luckily, the Pulse Sensor Amped can solve that problem!
The Pulse Sensor Amped is a plug-and-play heart-rate sensor for Arduino. It can be used by students, artists, athletes, makers, and game & mobile developers who want to easily incorporate live heart-rate data into their projects.It essentially combines a simple optical heart rate sensor with amplification and noise cancellation circuitry making it fast and easy to get reliable pulse readings. Also, it sips power with just 4mA current draw at 5V so it’s great for mobile applications.
Simply clip the Pulse Sensor to your earlobe or finger tip and plug it into your 3 or 5 Volt Arduino and you’re ready to read heart rate! The 24" cable on the Pulse Sensor is terminated with standard male headers so there’s no soldering required. Of course Arduino example code is available as well as a Processing sketch for visualizing heart rate data.
ISD1820 Voice Recording Module is another very interesting stuff. You don't need to prepare a speaker and a mic - both are included in this module! After connecting to the power, you can press REC to record a 10 second voice. Press PLAYE to play the complete voice once. Press and hold PLAYL it will play the voice and it stop when the button is released. It can also be controlled by Arduino. Combined with Laser Detector and Laser Module, you can make a doorbell, security system, and power-saving light along corridor for instance.