Microduino Bluetooth (BLE) USER GUIDE.

Size: px
Start display at page:

Download "Microduino Bluetooth (BLE) USER GUIDE."

Transcription

1 Microduino Bluetooth (BLE) USER GUIDE

2 Content Features... 2 Specification... 2 Document... 3 Main Components...3 Andriod APP...3 Development... 3 Serial Port Communication Requirements...3 Use PC to Debug...4 Use USBTTL and Core to Download and Debug...4 Communicate with Android Device...5 Communicate with IOS Device...6 Communicate with MAC Device Extension Use AT to view or change the parameter of BT Pin Description Application Program Download Serial Port Debug Shield BT4.0 by CoreUSB Have serial debugging of BT module by uart1 of Core Intercommunication between Two Microduino-BT Modules Microduino BT Serial port Transmits Data to IOS Device A simple test of Microduino-Shield BT FQA

3 Microduino-BT is a BLE serial transparent transmission module based on CC2541 chip. It is custom-made for U-shaped 27PIN standard interface of Microduino. Features Adopt Microduino UPIN27 standard interface, working by stacking with other Microduino modules; Adopt TI CC2541 chip with low consumption; Support ibecons mode; Multiple ways to restore factory settings; o Use "AT+ RENEW\r\n" instruction to restore; o Test pin DEF to GND and then power on the module. The LED light blinks after LED 1 keeps on for three seconds and meantime, loose DEF and factory reset succeeds, you can see the LED light blinks every one second. Capable of data power-off preservation function; Support AT instruction and flexible to change serial baud rate, device name, code matching as well as other parameters according to various needs; Small, cheap, stackable and open source; Open source hardware circuit design and Arduino compatible programming development environment; Uniform Microduino interface standard and rich external modules, flexible to connect with other Microduino modules and sensors; 2.54 pin pitch interface makes it easy to be integrated to pegboard. Specification Way of Communication: Serial port transmission and the default serial port is D4(RX), D5(TX); Power Supply: +3.3VDC 50mA; Bluetooth Protocol: Bluetooth Specification V4.0 BLE; Service Support: Central & Peripheral UUID FFE0,FFE1; Frequency: 2.4GHz ISM band; Way of Modulation: GFSK(Gaussian Frequency Shift Keying); Transmit Power: 4dBm; Flexibility: -84dBm at 0.1% BER; Transmission Rate: o Asynchronous: 6 kbps; o Synchronous: 6 kbps; Status Indicator: o Before connection: 2

4 Host machine indicator keeps on for 100ms every second when not recording slave machine address; Host machine indicator keeps on for 900ms every second when recording slave machine address; Slave machine indicator keeps on for one second every two seconds. o After connection: o The indicator of both the host and the slave machine keeps on for 100ms every five seconds. During the transmission, each data package should include less than 120 bytes. The higher the baud rate is, the longer transmission interval is. There exists loss rate during Bluetooth data transmission. So users should be ready for retransmission or data check. ibeacon has been integrated. Set by AT instruction "AT+MODE2\r\n" can be achieved only under slave machine. o Work mode: 0(transmission), 1(Direct drive) and 2(iBeacon); o ibeacon can be tested by Locate ibeacons offered on App Store. Document Eagle PCB File: Microduino-BT Shield.zip Main Components CC2541_datasheet: CC2541.pdf Andriod APP APP Installation package: BT_APP.zip APP Source: If you want to develop your own app referring to the android code in Github, you need pay attention that the UUID must be same with the UUID of Microduino-BT. Development Serial Port Communication Requirements Default serial configuration is: o Baud rate: 9600 o No check 3

5 o Data bit 8 o Stop bit 1 For Arduino IDE serial monitor: o Set to: "\r\n", "9600baud" For other serial debugging software: o Baud rate 9600 o No check o Data bit 8 o Stop bit Use PC to Debug Debug by serial port: o Do not stack Microduino-USBTTL directly and cross connect RX(D4) and TX(D5) of Microduino-USBTTL and Microduino-BT. Use USBTTL and Core to Download and Debug If it keeps using the default jumper (RX0, TX1): Unplug the Microduino Shield BT4.0 during downloading the program; If you want to change the jumper cables to meet your requirement, you need to cut the connection between two intermediate of the pad and RX0/TX1, and then connect them to D2, D3 (or D9, D10). If it needs to change the jumper, you can change the serial connection of Microduino Shield BT4.0 and Microduino Core from "TX-RX0, RX-TX1" to: TX-D2, RX-D3 (For Core+'s Serial1) TX-D9, RX-D10 (you can adopt SoftwareSerial libray to solve the problem) Program 1. //Use SoftwareSerial to use other soft serial ports. 2. #include <SoftwareSerial.h> 3. SoftwareSerial myserial(4, 5); #define my_serial myserial //Use soft serial ports 4 and //#define my_serial Serial1 7. String msg = ""; //To define a string void setup() 10. { 11. // Initialize the Bluetooth communication baud rate. 12. my_serial.begin(9600); 13. // Initialize the serial communication baud rate monitor. 14. Serial.begin(9600); 4

6 15. } 16. void loop() 17. { 18. //Every time receive a signal, feedback to the other end of the communicat ion. 19. if (my_serial.available() > 0) //If there are signals being transferred i nto the serial port. 20. { 21. msg = my_serial.readstringuntil('\n'); //Get all the contents before the newline character. 22. Serial.println(msg); //The serial monitor displays the string received in the MSG. 23. my_serial.println("^_^ Hello,Microduino!"); //Send data to the other en d of Bluetooth communication. 24. } 25. } Communicate with Android Device Only mobile phones with 4.3 and above system can communicate with Microduino-BT; Download Android communication software, and install it to the mobile phone; File:MSerial.zip Step 1: Download programs to Microduino; Step 2: Begin to set Android device. Open the bluetooth of the Android deice, open the App, and open the serial port monitor at the computer IDE; 5

7 Step 3: Click on the SCAN button at the top right corner of the App, which is used to search bluetooth access point around, and after clicking on the button, it will display surrounding bluetooth devices. Click the corresponding Microduino bluetooth number. After entering the interface, waiting about 2-3 seconds. When it changes into "Serial ready" on the top right corner of the screen, the mobile phone has been connected to the Bluetooth. The mobile sends English characters to Microduino, and the serial port monitor receives them. At the same time the mobile phone has received "^_^ Hello, Microduino!" that is sent by Microduino, which has proved the bidirectional communication function of Bluetooth. Communicate with IOS Device Above iphone 4s, ipod touch 5, ipad 3, and ipad mini; 6

8 Go to App Store to download LightBlue: Step 1: Download the program to Microduino: Step 2: Install "lightblue". Open the software, and set the IOS device. Open the bluetooth of the IOS device. And open the serial port monitor on computer IDE. 7

9 Step 3: Open LightBlue: The interface that you have entered is bluetooth device searching interface. Find the bluetooth device of Microduino from the list under "Peripherals Nearby", and click it to connect it with the mobile phone; After connecting, you will enter the interface as following: 8

10 Step 4: Choose and click Characteristic6, and look at the format of the code at the top right corner of the screen, and the default is Hex 16 binary code. If you want it displays the string, please click on the button where the Hex is and choose UTF-8 code format. Then click "Listen for notifications" to make the mobile phone into listening state. Step 6: Click "Write new value", and the text editing interface will come out. 9

11 Custom input a string of English and digital, and observe the result that the mobile and serial port display. You can see from the picture that the serials have received the "12345" that the mobile phone sent, and the mobile also has received the "Bluetooth respond" that the Bluetooth returned. It proves that the Bluetooth two-way communication is smooth. 10

12 Communicate with MAC Device Mac Bluetooth can't connect with BT search directly, so you need to use Light Blue to develop and download. Connect the Microduino-Core and BT module to the computer, and download the same code. Open the Arduino serial port monitor, then open Light Blue, and you will the Microduino device has been identified. Click Microduino to connect with the Bluetooth. After the connection, the serial port monitor will print out Connected. At the same time, the Bluetooth indicator light will slightly twinkle (the frequency is mare faster, and the lightness is lower). Choose as the following picture, and then send messages to BT module, such as mcookie. 11

13 You will see the serial port monitor prints Microduino. Extension Use AT to view or change the parameter of BT AT command configuration/control document: Microduino-BLE.pdf (zh_cn) Program 1. //Use SoftwareSerial to use other soft serial ports. 2. //#include <SoftwareSerial.h> 3. //SoftwareSerial myserial(4, 5); // RX, TX //#define my_serial myserial 6. #define my_serial Serial1 //Define serial ports CoreUSB and BT void setup() 9. { 10. Serial.begin(9600);//Serial communication baud rate monitor 11. my_serial.begin(9600);//bt communication baud rate. 12. } void loop() 15. { 16. if (Serial.available())//Monitor the data of the serial port monitor. 17. my_serial.write(serial.read());//write data into BT. 18. if (my_serial.available())//monitor the data of BT serial port. 19. Serial.write(my_Serial.read());//Print the data in the serial port monit or. 20. } 12

14 Program download o Stack the mcookie-bt and mcookie-coreusb togethe. Insert the USB cable into the jack of mcookie-coreusb, and connect the other end to the USB port of the computer; o Start Arduino IED, and copy the program to IDE; o Choose Microduino CoreUSB at tools -> Board, and choose the corresponding serial port number at tools -> Serial; o Click on the compile ( ) at the top left corner of the IDE co compile the program. After finishing profiling, click the download (->) button to write the program to the board; Open the serial port monitor, and set it as: "\r\n", "9600baud". Input the specified commands in the serial port monitor, and you can see the result returned. And the reference document can change the parameter of BT. Use software serial port communication program: 13

15 1. //Use SoftwareSerial to use other soft serial ports. 2. #include <SoftwareSerial.h> 3. SoftwareSerial myserial(4, 5);//According to the serial port selected, selec t the corresponding port numbers (2, 3) or (4, 5) #define my_serial myserial String msg = ""; void setup() 10. { 11. //Initialize the Bluetooth communication baud rate. 12. my_serial.begin(9600); 13. // Initialize the serial communication baud rate monitor. 14. Serial.begin(9600); 15. } 16. void loop() 17. { 18. //Every receiving the signal, feedback to the other end of the communicati on 19. if (my_serial.available() > 0) //If there are data transferred into the s erial ports. 20. { 21. msg = my_serial.readstringuntil('\n'); //Get all the contents before the newline character. 22. Serial.println(msg); //The serial monitor displays the string received in the MSG. 23. my_serial.println("bluetooth respond"); //Send data to the other end of the bluetooth communication. 24. } 25. } Pin Description 14

16 Application Program Download Program test: File:BLE debug uart1.zip,file:ble LightBlue time.zip Serial Port Debug Shield BT4.0 by CoreUSB Hardware: Microduino CoreUSB and Microduino BT; Software: Arduino IDE (version 1.0 or higher) and Microduino test program (Arduino end); o Other conditions: Users can change the jumpers back of the module and change the serial port to RX0(D0) and TX1(D1);(Because CoreUSB can use USB to simulate 0(Serial), and RX0 and TX1 is the (Serial 1) of CoreUSB); Start Arduino IDE, open Microduino test program and choose Microduino- CoreUSB as the board and download directly; Check if the serial communication is OK or not: o Send "AT"(with \r\n behind) after opening the serial monitor and if the return is "OK", it means the configuration is successful. Have serial debugging of BT module by uart1 of Core+ Hardware: Microduino USBTTL, Microduino Core+ and Microduino BT; 15

17 Software: Arduino IDE (version 1.0 and higher) as well as Microduino test program (Arduino end); Other conditions: Users can change the jumpers back of the module and change the serial port to D2 and D3; Start Arduino IDE, open Microduino test program and choose board Microduino Core+( and download; Check the status of the serial communication: o Send "AT"(with \r\n behind) after opening the serial monitor and if the return is "OK", it means the configuration is successful. Intercommunication between Two Microduino-BT Modules Step 1: Two BT modules match the connection. o Please refer to: Connection Method for New Version Step 2: o The default is the soft serial port (D4, D5). Here we introduce the connection method of the default serial port. If you want to change jumpers, you need to change program of the serial port correspondingly. Note: Baud rate should be below If using serial1 (D2, D3): o If using Core to debug, please change SoftwareSerial myserial(4, 5) to SoftwareSerial myserial(2, 3) ; o If using Core+ to debug, please change program myserial to Serial1. (D2, D3) corresponds to Serial 1 of Core+ 1. #include <SoftwareSerial.h> 2. SoftwareSerial myserial(4, 5); // RX, TX void setup() 5. { 6. // Open serial communications and wait for port to open: 7. Serial.begin(9600); 8. // set the data rate for the SoftwareSerial port 9. myserial.begin(9600); 10. } void loop() // run over and over 13. { 14. if(serial.available()) 15. { 16. myserial.write(serial.read()); 17. } 18. if(myserial.available()) 19. { 20. Serial.write(mySerial.read()); 21. } 22. } Download the Program to the core board and you can send data through serial port input. 16

18 Note: After connection, AT instruction doesn t work. 17

19 Microduino BT Serial port Transmits Data to IOS Device Note: If you use Android device to debug, you need to make sure the system should be version 4.3 or higher so that Microduino-BT can be detected. A simple test of Microduino-Shield BT4.0 A simple test of Microduino-Shield BT4.0 颜火山 (Technical Blog in Chinese) FQA The module can't make pair with win7? o Please check its version in win 7, which only support BLE 4.0 version and the default password is How to reset the module? o You can adopt power-on reset or send AT instruction "AT+RESTART\r\n" through the serial port. It can't make pair with iphone or Android phones? o This issue is mostly caused by the version of the BT. This module only supports BT4.0 protocol. o For Andriod OS: 4.3 and higher o For IOS: iphone 4s and higher, ipod Touch 5 and higher, ipad 3 and higher,ipad mini and higher. 18

Parameters. Specifications. Bluetooth Specification V4.0 BLE. Modulation method GFSK(Gaussian Frequency Shift Keying)

Parameters. Specifications. Bluetooth Specification V4.0 BLE. Modulation method GFSK(Gaussian Frequency Shift Keying) Grove BLE v1 Grove - BLE v1 (Grove - Bluetooth Low Energy v1) uses a Low Energy Bluetooth module -- HM-11, based on TI CC2540 chip, which has AT command support. As a Grove product it's convenient to use

More information

Grove - BLE. Release date: 9/20/2015. Version: 1.0. Wiki:

Grove - BLE. Release date: 9/20/2015. Version: 1.0. Wiki: Grove - BLE Release date: 9/20/2015 Version: 1.0 Wiki: http://www.seeedstudio.com/depot/grove-emg-detector-p-1737.html Bazaar: http://www.seeedstudio.com/wiki/grove_-_emg_detector 1 Document Revision History

More information

4 CHANNEL RELAY BOARD- BLUETOOTH

4 CHANNEL RELAY BOARD- BLUETOOTH 4 CHANNEL RELAY BOARD- BLUETOOTH www.researchdesignlab.com Page 1 Table of Contents OVERVIEW...3 FEATURES...3 APPLICATION DIAGRAM...4 Bluetooth Module HC 05...5 SPECIFICATION... 5 APPLICATION...5 CIRCUIT

More information

Wireless-Tag WT51822-S4AT

Wireless-Tag WT51822-S4AT Description: WT51822-S4AT is a high performance,low power radio transmit and receive system module use Nordic BLE 4.1 nrf51822 as the controller chips. It has the smallest volume package in the industry,

More information

GSM Shield SIM900. Get Starting

GSM Shield SIM900. Get Starting GSM Shield SIM900 Get Starting This GPRS Shield is compatible with all boards which have the same form factor (and pinout) as a standard Arduino Board. GPRS module delivers GSM/GPRS 850/900/1800/1900MHz

More information

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232C

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232C Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232C Package content: BLE RS-232 adapter x 1 Screws for DB9 connector x 2 Nuts for DB9 connector x 2 User

More information

DF BluetoothV3 Bluetooth module (SKU:TEL0026)

DF BluetoothV3 Bluetooth module (SKU:TEL0026) DF BluetoothV3 Bluetooth module (SKU:TEL0026) From Robot Wiki Contents 1 Introduction 2 Specification 3 PinOut 4 Set module in AT mode o 4.1 How to enter into AT mode o 4.2 Preparation o 4.3 Steps 5 Tutorial

More information

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-232 Serial Adapter. Model: BLE-232D-E. 1. Package content: BLE RS-232 adapter

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-232 Serial Adapter. Model: BLE-232D-E. 1. Package content: BLE RS-232 adapter 1. Package content: BLE RS-232 adapter Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232D-E Package Contents: BLE RS-232 adapter x 1 A4 User manual x 1 Mini USB Cable x 1 White Box: 11 x 6 x 5 (cm)

More information

+ (5~27 VDC) GND. Bluetooth V4.1 BLE RS-232 Serial Adapter. Model: BLE-232B. 1. Package content: BLE RS-232 adapter

+ (5~27 VDC) GND. Bluetooth V4.1 BLE RS-232 Serial Adapter. Model: BLE-232B. 1. Package content: BLE RS-232 adapter Bluetooth V4.1 BLE RS-232 Serial Adapter 1. Package content: BLE RS-232 adapter Model: BLE-232B Package Contents: BLE RS-232 adapter x 1 Screw x2, Screw nut x 2 A4 User manual x 1 Mini USB Cable x 1 White

More information

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.1 BLE Datasheet and Quick Reference for BLE232V2

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.1 BLE Datasheet and Quick Reference for BLE232V2 Serial Bluetooth Smart Adapter - RS232, Low Energy 4.1 BLE Datasheet and Quick Reference for BLE232V2 Package content: BLE RS-232 adapter x 1 Screws for DB9 connector x 2 Nuts for DB9 connector x 2 User

More information

Bluno SKU:DFR0267. Contents. Introduction

Bluno SKU:DFR0267. Contents. Introduction Bluno SKU:DFR0267 Contents 1 Introduction 2 Specification 3 Bluno Basic Demo 3.1 Tools needed 3.2 Steps 4 Board Overview 5 Wireless Programming via BLE 6 Update BLE Firmware on Bluno(AT+VERSION to check

More information

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-422/485 Serial Adapter. Model: BLE-485C. 1. Package content: BLE RS-422/485 adapter

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-422/485 Serial Adapter. Model: BLE-485C. 1. Package content: BLE RS-422/485 adapter Bluetooth V4.2 BLE RS-422/485 Serial Adapter 1. Package content: BLE RS-422/485 adapter Model: BLE-485C Package Contents: BLE 422/485 adapter x 1 Screw x2, Screw nut x 2 A4 User manual x 1 Mini USB Cable

More information

Bluetooth V4.1 BLE RS-232 Serial Adapter Model: BLE-232B Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232C

Bluetooth V4.1 BLE RS-232 Serial Adapter Model: BLE-232B Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232C Bluetooth V4.1 BLE RS-232 Serial Adapter Model: BLE-232B Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232C Applications: MSR card reader reader, RFID reader, IC card reader, Specifications: 1. Baud

More information

Microduino USBHOST USER GUIDE.

Microduino USBHOST USER GUIDE. Microduino USBHOST USER GUIDE https://eckstein-shop.de/ Content Features... 2 Specification... 2 Document... 3 Development... 4 Application... 5 Prepare work...5 Debug...5 1 https://eckstein-shop.de/ Microduino

More information

Bluetooth 4.0 BLE Module

Bluetooth 4.0 BLE Module SH-HC-08 Data Sheet Bluetooth 4.0 BLE Module 1 Overview... 2 2 Feature... 2 3 Product s picture... 3 4. Application Fields... 4 5. Physical Characteristics... 4 6. Electrical Characteristics... 5 7. Application

More information

RS422/RS485 Shield. Application Note: Multiple RS485 busses. 1 Introduction

RS422/RS485 Shield. Application Note: Multiple RS485 busses. 1 Introduction 1 Introduction This application note will show you how to connect up to 3 independent RS485 busses to one Arduino. This can be useful if you want to create a gateway between these busses or if you want

More information

WAVETEK BLE-WT51822AA/AB. Revision History. Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION

WAVETEK BLE-WT51822AA/AB. Revision History. Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION Part number: BLE WT51822AA/AB Wavetek has developed a module which supports Bluetooth Low Energy

More information

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232DEXA

Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232DEXA Serial Bluetooth Smart Adapter - RS232, Low Energy 4.2 BLE Datasheet and Quick Reference for USBLE232DEXA Package content: BLE RS-232 adapter x 1 User manual x 1 Mini USB Cable x 1 DB9 (male) Reset to

More information

IO Expansion Shield User Manual

IO Expansion Shield User Manual IO Expansion Shield User Manual 1 Features 3-pin & 4-pin sensor interfaces, supports connecting sensors directly without complicate custom connections XBee module connector WIFI-LPT100 wireless module

More information

User Manual. ESP8266 Wifi Shield

User Manual. ESP8266 Wifi Shield User Manual Of ESP8266 Wifi Shield Description The shield is designed based on esp8266 by Espressif Systems, pin-compatible with Arduino UNO/Mega2560 DevBorad. Which can be used as two independent part,

More information

Gravity: UART A6 GSM & GPRS Module SKU: TEL0113

Gravity: UART A6 GSM & GPRS Module SKU: TEL0113 Gravity: UART A6 GSM & GPRS Module SKU: TEL0113 Introduction With the blooming development of IoT (Internet of Things), more and more people are dedicated to pursue their own IoT dreams. However traditional

More information

Lab 8. Communications between Arduino and Android via Bluetooth

Lab 8. Communications between Arduino and Android via Bluetooth Lab 8. Communications between Arduino and Android via Bluetooth Dr. X. Li xhli@citytech.cuny.edu Dept. of Computer Engineering Technology New York City College of Technology (Copyright Reserved) In this

More information

RN-171-EK Evaluation Board

RN-171-EK Evaluation Board RN -17 1-E K-DS RN-171-EK Evaluation Board Features Ultra-low power: 4-uA sleep, 40-mA Rx, 180-mA Tx at 10 dbm Configurable transmit power: 0 to +12 dbm UART hardware interfaces and SPI slave Up to 1 Mbps

More information

T-Scratch Basics. Coding with IDE (Software)

T-Scratch Basics. Coding with IDE (Software) T-Scratch Basics Coding with IDE (Software) Learning Objective In this lesson you will learn: T-Scratch Bluetooth-Bluetooth Allow 2 T-Scratch modules to communicate with one another. Using T-Scratch s

More information

DFRobot BLE4.1 Module SKU: TEL0120

DFRobot BLE4.1 Module SKU: TEL0120 DFRobot BLE4.1 Module SKU: TEL0120 Introduction BLE4.1 Module is DFRobot newly developed Bluetooth 4.1 transmission module, adhering to the same usage of Bluno, and increasing the star network function,

More information

Xbee Shield. Introduction

Xbee Shield. Introduction Xbee Shield Introduction A Xbee shield allows an Arduino board to communicate wirelessly using Bee compatible modules (like Zigbee or BlueTooth Bee). It is designed to be used with Xbee module from MaxStream.

More information

SKU:TEL0092 WiFi Bee-ESP8266 Wirelss module

SKU:TEL0092 WiFi Bee-ESP8266 Wirelss module Page 1 of 32 SKU:TEL0092 WiFi Bee-ESP8266 Wirelss module Contents 1 Introduction 2 Specifications 3 Pin out 4 Tutorials 4.1 How to Use? 4.1.1 1 Connect AP 4.1.2 2 (/wiki/index.php/file:tel0092_frontpage.jpg)

More information

Wireless Sensor Networks BLUETOOTH LOW ENERGY. Flavia Martelli

Wireless Sensor Networks BLUETOOTH LOW ENERGY. Flavia Martelli Wireless Sensor Networks BLUETOOTH LOW ENERGY Flavia Martelli flavia.martelli@unibo.it Outline Introduction Applications Architecture Topology Controller specifications: Physical Layer Link Layer Host

More information

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT I Contents Overview TA0139... 1 Getting started: Arduino 2 Wheel Drive Wireless Bluetooth Robot Kit using Arduino UNO... 1 2.1. What

More information

Adafruit Optical Fingerprint Sensor

Adafruit Optical Fingerprint Sensor Adafruit Optical Fingerprint Sensor Created by lady ada Last updated on 2017-11-27 12:27:09 AM UTC Guide Contents Guide Contents Overview Enrolling vs. Searching Enrolling New Users with Windows Searching

More information

FireBeetle Board 328P with BLE4.1 SKU: DFR0492

FireBeetle Board 328P with BLE4.1 SKU: DFR0492 FireBeetle Board 328P with BLE4.1 SKU: DFR0492 Introduction DFRobot FireBeetle series are low power consumption controllers designed for Internet of Things (IoT) development. This Bluetooth controller

More information

TOSR14x. TOSR14x USB/Wireless Relay Module. User Manual. Tinysine 2015 Version 1.2

TOSR14x. TOSR14x USB/Wireless Relay Module. User Manual. Tinysine 2015 Version 1.2 TOSR14x TOSR14x USB/Wireless Relay Module User Manual Tinysine Electronics @ 2015 Version 1.2 1 INTRODUCTION TOSR14x is an upgraded version of TOSR04. It supports password. It can be set to latching or

More information

SNR610. Embedded network node module SNR610. Description. Feature. Application. SNR610 is highly integrated network module.

SNR610. Embedded network node module SNR610. Description. Feature. Application. SNR610 is highly integrated network module. Embedded network node module SNR610 Description SNR610 is highly integrated network module. It adopts high performance Silicon Lab Si4432 RF chip. Si4432 has high reception sensitivity and 100mW output

More information

NDB-C0706A Dual Mode Bluetooth Module

NDB-C0706A Dual Mode Bluetooth Module NDB-C0706A Dual Mode Bluetooth Module 1 Device Overview 1.1 Description This module is designed with Cypress CYW20706 (previously Broadcom BCM20706) dual mode Bluetooth 5.0 SoC. CYW20706 features 96 MHz

More information

ProgRock Operating manual _Pr1.01a_

ProgRock Operating manual _Pr1.01a_ 1. Introduction ProgRock Operating manual _Pr1.01a_ This is the operating manual for the ProgRock synthesiser kit. It should be read together with the assembly instructions for the ProgRock kit and Si5351A

More information

SIM900A GSM/GPRS MODEM WITH PCB ANTENNA UART INTERFACE. [RKI-1644]

SIM900A GSM/GPRS MODEM WITH PCB ANTENNA UART INTERFACE. [RKI-1644] SIM900A GSM/GPRS MODEM WITH PCB ANTENNA UART INTERFACE. [RKI-1644] USER MANUAL ROBOKITS INDIA (www.robokits.co.in) http://www.robokitsworld.com Page 1 Description: The GSM/GPRS Modem uses SIM900A based

More information

Bluno Mega 2560 (SKU:DFR0323)

Bluno Mega 2560 (SKU:DFR0323) Bluno Mega 2560 (SKU:DFR0323) From Robot Wiki Contents 1 Introduction 2 Specification 3 Pin Out 4 Supported Android Devices 5 Supported Apple Devices 6 Tutorial o 6.1 More advantages o 6.2 The serial port

More information

Bluetooth TO Serial CONVERTER E-P132-B

Bluetooth TO Serial CONVERTER E-P132-B Bluetooth TO Serial CONVERTER E-P132-B 1 Table of Contents Introduction..3 Package checklist...4 Product Specification...5 Product Panel Views Description...6 Product Views. 6 DC-In Power Outlet 6 Antenna

More information

G3P-WiFi User Manual Release 1.2

G3P-WiFi User Manual Release 1.2 G3P-WiFi User Manual Release 1.2 Last Update 25/11/2014 1 Appendix Order Codes... 3 Release History... 3 Release 1.0... 3 Release 1.1... 3 Release 1.2... 3 GENERAL FEATURES... 3 1 Tools to begin... 4 1.1

More information

Microduino mcookie-rtc USER GUIDE.

Microduino mcookie-rtc USER GUIDE. Microduino mcookie-rtc USER GUIDE https://eckstein-shop.de/ Content Features... 2 Specification... 2 Development... 3 Detect Power-down Time Duration...3 Test EEPROM Read/Write...5 FAQ... 7 1 https://eckstein-shop.de/

More information

Bluetooth to RS-232 Converter. RT-132B Bluetooth Adaptor Operation Manual

Bluetooth to RS-232 Converter. RT-132B Bluetooth Adaptor Operation Manual Bluetooth to RS-232 Converter RT-132B Bluetooth Adaptor Operation Manual First Edition, Nov 2007 Table of Contents 1. Introduction.. 2 2. Package checklist.. 3 3. Product Specification... 4 4. Product

More information

Bluetooth RS-232 Dongle. User s Manual BTS-100

Bluetooth RS-232 Dongle. User s Manual BTS-100 Bluetooth RS-232 Dongle User s Manual BTS-100 Table of Contents 1. INTRODUCTION... 2 2. PHYSICAL DIAGRAM... 3 3. BLUETOOTH PAIRING AND CONNECTING... 4 4. RS-232 INSTALLATION... 10 5. HYPERTERMINAL SETTING

More information

our APP,you can easily control robot,drone and others by BLE. Adopting TI CC2540 chip with 256 KB space, the BLE HC module can use BLE technology

our APP,you can easily control robot,drone and others by BLE. Adopting TI CC2540 chip with 256 KB space, the BLE HC module can use BLE technology 1. General description You can use it with Freaduino(work on 3.3V mode) and other MCU. Using with our APP,you can easily control robot,drone and others by BLE. Adopting TI CC2540 chip with 256 KB space,

More information

RN-174 WiFly Super Module

RN-174 WiFly Super Module RN- WiFly Super Module Features Evaluation board for the RN- module Supports chip antenna (RN--C), PCB trace antenna (RN--P), wire antenna (RN--W), and U.FL connector for an external antenna (RN--U) Ultra-low

More information

ProgRock Operating manual _Pr1.02_

ProgRock Operating manual _Pr1.02_ 1. Introduction ProgRock Operating manual _Pr1.02_ This is the operating manual for the ProgRock synthesiser kit. It should be read together with the assembly instructions for the ProgRock kit and Si5351A

More information

BLE Wireless Gamepad V2 SKU: DFR0304

BLE Wireless Gamepad V2 SKU: DFR0304 BLE Wireless Gamepad V2 SKU: DFR0304 Introduction Wondering if your newly bought gamepad can be used to both playing games and controlling a robot? The new BLE 4.0 wireless gamepad V2.0 produced by DFROBOT

More information

Overview. Applications. Features. Pin assignment

Overview. Applications. Features. Pin assignment Shanghai Yancan Electronic Technology Co., Ltd. Product Name:BLE module Model No.:ZEN-BD98 Overview ZEN-BD98 is a BLE module. By this module, the communication between mobile phone and user s device can

More information

BLUETOOTH FOR TELESCOPE HANDCONTROLLERS

BLUETOOTH FOR TELESCOPE HANDCONTROLLERS BLUETOOTH FOR TELESCOPE HANDCONTROLLERS ALL INFORMATION, DOCUMENTS & VIDEOS HANDCONTROLLER UPGRADE BIBLE https://astro.marxram.de/handcontroller-upgrade-bible/ Roland Marx Version 1.0 (22.9.2018) MY FREE

More information

Bluno Bee - Turn Arduino to a Bluetooth 4.0 (BLE) Ready Board

Bluno Bee - Turn Arduino to a Bluetooth 4.0 (BLE) Ready Board Bluno Bee - Turn Arduino to a Bluetooth 4.0 (BLE) Ready Board SKU:TEL0073 Contents 1 Introduction 2 Specifications 3 Android devices Support List 4 Apple devices Support List 5 Pinout 6 Basic Demo with

More information

BLE Bluetooth Low Energy Modules SBC2112-B. Preliminary Specification. Version 1.0

BLE Bluetooth Low Energy Modules SBC2112-B. Preliminary Specification. Version 1.0 BLE Bluetooth Low Energy Modules SBC2112-B Preliminary Specification Version 1.0 23-JUN.-2014 Content 1. Description...3 2. Features...3 3. Block Diagram...3 4. Radio Characteristics...4 5. Electrical

More information

User s Guide IoT Microcontroller Development Kit

User s Guide IoT Microcontroller Development Kit User s Guide IoT Microcontroller Development Kit 1.0 Introduction 2 1.1 Features 2 1.2 Board Pictures 3 2.0 Hardware 4 2.1 Bill of Materials 4 2.2 Pin Map Diagram 5 2.3 Block Diagram 6 2.4 Board Revisions

More information

BLE232: Manual Copyright 2014 taskit GmbH

BLE232: Manual Copyright 2014 taskit GmbH BLE232 Manual BLE232: Manual Copyright 2014 taskit GmbH BLE232 All rights to this documentation and to the product(s) described herein are reserved by taskit GmbH. This document was written with care,

More information

Embedded Modbus TCP Module GS11-MT. User Manual REV 1.1. SST Automation.

Embedded Modbus TCP Module GS11-MT. User Manual REV 1.1. SST Automation. Embedded Modbus TCP Module GS11-MT User Manual REV 1.1 SST Automation E-mail: SUPPORT@SSTCOMM.COM WWW.SSTCOMM.COM Catalog 1 About the Embedded Module... 4 1.1 General...4 1.2 Features... 4 1.3 Specifications...4

More information

8:1 Serial Port Expander

8:1 Serial Port Expander 8:1 Serial Port Expander V 1.3 This is an evolving document check back for updates. Features Expand a single UART (RX / TX) serial port into 8 additional serial ports On-board LEDs indicate which channel

More information

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features SH1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Arduino Shield Modem 868 MHz

More information

Product Specification Name:Zigbee Master MODEL: WF320

Product Specification Name:Zigbee Master MODEL: WF320 Product Specification Name:Zigbee Master MODEL: WF320 Summarization Zigbee master controller is the major part of the multiple point controller system, it adopts Zigbee intelligent ad-hoc network, technology

More information

Web Site: Forums: forums.parallax.com Sales: Technical:

Web Site:  Forums: forums.parallax.com Sales: Technical: Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Bluetooth LE 4.0 and 4.1 (BLE)

Bluetooth LE 4.0 and 4.1 (BLE) Bluetooth LE 4.0 and 4.1 (BLE) Lab 11 Lunch April 23rd, 2014 Noah Klugman Josh Adkins 1 Outline History of Bluetooth Introduction to BLE Architecture Controller Host Applications Power Topology Example:

More information

RN-134. WiFly GSX Super Module SuRF Board. Features. Description. Applications. ~ page 1 ~ rn-134-ds v1.

RN-134. WiFly GSX Super Module SuRF Board. Features. Description. Applications. ~ page 1 ~  rn-134-ds v1. WiFly GSX Super Module SuRF Board Features UART interface with RS232 and TTL signaling Through hole board simplifies system integration Accepts 3-12VDC Status LEDs to show network status and data transfer

More information

User s Manual. Rev. 1.0 MCI-MA StampDuino. StampDuino User s Manual Page 1 of 7

User s Manual. Rev. 1.0 MCI-MA StampDuino. StampDuino User s Manual Page 1 of 7 StampDuino User s Manual Page 1 of 7 User s Manual StampDuino Rev. 1.0 MCI-MA-0142 MCI Electronics. Luis Thayer Ojeda 0115. Oficina 402 Santiago, Chile Tel: +56 2 3339579 Fax: +56 2 3350589 MCI Electronics.

More information

BLE010V5 1. (Based on CSR1010) Bluetooth Modules. User s Manual V1.5

BLE010V5 1. (Based on CSR1010) Bluetooth Modules. User s Manual V1.5 BLE010V5 (Based on CSR1010) Bluetooth Modules User s Manual V1.5 BLE010V5 1 TABLE OF CONTENTS 1 Introduction and Block Diagram... 3 1.1 General Introduction... 3 1.2 Block Diagram... 3 2 Main Features

More information

LM058 Bluetooth Serial Adapter

LM058 Bluetooth Serial Adapter LM058 Bluetooth Serial Adapter with external antenna The LM058 Bluetooth Serial Adapter eliminates your conventional RS232 serial cables, providing an easy-to-use, invisible connection with freedom of

More information

keyestudio Keyestudio MEGA 2560 R3 Board

keyestudio Keyestudio MEGA 2560 R3 Board Keyestudio MEGA 2560 R3 Board Introduction: Keyestudio Mega 2560 R3 is a microcontroller board based on the ATMEGA2560-16AU, fully compatible with ARDUINO MEGA 2560 REV3. It has 54 digital input/output

More information

MiniBeacon Plus User Manual

MiniBeacon Plus User Manual MiniBeacon Plus User Manual Version: V1.0 TEL: 0086-755-2103 8160 EMAIL: sales@minewtech.com URL: www.minewtech.com Page 1 I. Activate the device Turn on: Press the button for 3 seconds, blue led will

More information

RN-174. WiFly GSX Super Module. Features. Description. Applications. rn-174-ds v1.1 1/24/2011

RN-174. WiFly GSX Super Module. Features. Description. Applications.   rn-174-ds v1.1 1/24/2011 www.rovingnetworks.com rn-174-ds v1.1 1/24/2011 WiFly GSX Super Module Features Development board containing the RN-171 module, status LEDs, power regulator Supports chip antenna (-C), PCB Trace antenna

More information

Use of ISP1507-AL Evaluation Boards

Use of ISP1507-AL Evaluation Boards Use of ISP1507-AL Evaluation Boards Application Note AN181103 Introduction Scope This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module ISP1507-AL,

More information

USR-TCP Hard version: V2.0 File version: V

USR-TCP Hard version: V2.0 File version: V Serial Device Server - RS232/RS485 to Ethernet converter USR-TCP232-300 Hard version: V2.0 File version: V1.1 2011-8-17 Serial Device Server - RS232/RS485 to Ethernet converter is an Equipment for convert

More information

Qblinks Qmote Maker s Module Developer Guide

Qblinks Qmote Maker s Module Developer Guide Qblinks Qmote Maker s Module Developer Guide This document is for Qmote Developers and Community Revision Information V0.1/2015-APR-16 Init Draft V1.1/2015-JUNE-18 Reduced output message length V1.2/2015-JULY-2

More information

PiKoder/SSC RX. User s Guide. Version 1.0b dated 11/01/16. Gregor Schlechtriem

PiKoder/SSC RX. User s Guide. Version 1.0b dated 11/01/16. Gregor Schlechtriem PiKoder/SSC RX User s Guide Version 1.0b dated 11/01/16 Gregor Schlechtriem webmaster@pikoder.com www.pikoder.com PiKoder/SSC RX User s Guide Content Overview 3 Hardware setup 5 Connecting the PiKoder/SSC

More information

WiFi and Ethernet Shield With WiFi Audio

WiFi and Ethernet Shield With WiFi Audio WiFi and Ethernet Shield With WiFi Audio User Manual Rev 1.0 MAY 25, 2013 Copyright 2013 HISTORY Version Date Description Author K8 Document No.: WMB20130110 Page 2 of 15 INDEX Features...5 1.1. Parameters...6

More information

User Manual V1.1 Date: WiFi RS-232 Adapter. Red LED: IP Address Blue LED: TX/RX 5V Out (Pin 9)

User Manual V1.1 Date: WiFi RS-232 Adapter. Red LED: IP Address Blue LED: TX/RX 5V Out (Pin 9) 1. Package Contents: WiFi RS-232 adapter x 1 Battery power line with connector x 1 User manual x 1 USB Cable x 1 2 dbi Dipole Antenna x 1 WiFi RS-232 Adapter White box: Dimension: 10 x 5.5 x 5 (cm) Weight:

More information

Design with Microprocessors

Design with Microprocessors Design with Microprocessors Year III Computer Science 1-st Semester Lecture 6: Serial data transfer Serial Interfaces on AVR Universal Synchronous and Asynchronous serial Receiver and Transmitter (USART)

More information

Arduino UNO R3 ESP8266 Web Server Serial Port WiFi Shield ESP13

Arduino UNO R3 ESP8266 Web Server Serial Port WiFi Shield ESP13 Arduino UNO R3 ESP8266 Web Server Serial Port WiFi Shield ESP13 1. Pin Explanation G: GND 5V: 5V Power Output D:connecting to digital port(d2-d13)of arduino control board 1 Control Switch: to control the

More information

ALPW-BLEM103 Datasheet 1.0 Bluetooth Low Energy HCI

ALPW-BLEM103 Datasheet 1.0 Bluetooth Low Energy HCI ALPW-BLEM103 Datasheet 1.0 Bluetooth Low Energy HCI FEATURES Ready-to-use Bluetooth Low Energy HCI module Ultra Small form factor 12mm x 12mm Ultra Low Power consumption EM Microelectronic Bluetooth Low

More information

BT-22 Product Specification

BT-22 Product Specification BT-22 Product Specification Features Amp ed RF, Inc. Description 10.4 mm x 13.5 mm Our micro-sized Bluetooth module is the smallest form factor available providing a complete RF platform. The BT-22 is

More information

Pmod ESP32 Reference Manual

Pmod ESP32 Reference Manual Pmod ESP32 Reference Manual The Digilent Pmod ESP32 features a radio with support for 802.11 b/g/n Wifi and dualmode Bluetooth. This module is perfect for connecting your FPGA or microcontroller projects

More information

BLE010V2 1. (Based on CSR1010) Bluetooth Modules. User s Manual V2.7

BLE010V2 1. (Based on CSR1010) Bluetooth Modules. User s Manual V2.7 BLE010V2 (Based on CSR1010) Bluetooth Modules User s Manual V2.7 BLE010V2 1 TABLE OF CONTENTS 1 Introduction and Block Diagram... 3 1.1 General Introduction... 3 1.2 Block Diagram... 3 2 Main Features

More information

nblue TM BR-MUSB-LE4.0-S2A (CC2540)

nblue TM BR-MUSB-LE4.0-S2A (CC2540) Page 1 of 5 Copyright 2002-2014 BlueRadios, Inc. Bluetooth 4.0 Low Energy Single Mode Class 1 SoC USB Serial Dongle nblue TM BR-MUSB-LE4.0-S2A (CC2540) AT HOME. AT WORK. ON THE ROAD. USING BLUETOOTH LOW

More information

RN-XV-EK Evaluation Board

RN-XV-EK Evaluation Board RN-XV-EK Evaluation Board Features Evaluation board for the RN-XV module, which is based on Roving Networks robust RN-171 Wi-Fi module Supports several antenna options, depending on the RN-XV module selected

More information

xpico 200 Series Evaluation Kit User Guide

xpico 200 Series Evaluation Kit User Guide xpico 200 Series Evaluation Kit User Guide This guide describes how to setup the xpico 200 series evaluation kit and provides the information needed to evaluate the included xpico 240 or xpico 250 embedded

More information

BT LE RN4020 USB Dongle Datasheet

BT LE RN4020 USB Dongle Datasheet BT LE RN4020 USB Dongle Datasheet Introduction BT LE RN4020 Dongle is a USB Stick type device build around Microchip s RN4020 module which provides a fully command based interface to manage the module.

More information

Bluetooth Serial Bridge

Bluetooth Serial Bridge Bluetooth Serial Bridge FB100AS Bridge User Guide Version 1.0 FIRMTECH Co., Ltd. Homepage : http://www.firmtech.co.kr Mail : contact@firmtech.co.kr Tel : +82-31-719-4812 Fax : +82-31-719-4834 Revision

More information

WBoard EX. -WIFI Development Platform Based on Arduino

WBoard EX. -WIFI Development Platform Based on Arduino 1 WBoard EX -WIFI Development Platform Based on Arduino Overview WBoard EX is a unique Arduino board with WIFI module, XBee socket, nrf24l01 + module interface, micro SD card interface, electronic brick

More information

WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107

WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107 WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107 Introduction The WiFi Bee MT7681 is an Arduino WiFi XBee module based on the MT7681 serial Wi-Fi module. It is compatible with an XBee slot,

More information

User s Manual BTS1009C. Bluetooth to Serial Adapter. SUNIX Co., Ltd.

User s Manual BTS1009C. Bluetooth to Serial Adapter. SUNIX Co., Ltd. BTS1009C Bluetooth to Serial Adapter User s Manual Second Edition, April 2007 SUNIX Co., Ltd. Tel : +886-2-8913-1987 Fax: +886-2-8913-1986 Http://www.sunix.com.tw info@sunix.com.tw BTS1009C Bluetooth to

More information

RAK WisCam. Quick Start Guide V1.4

RAK WisCam. Quick Start Guide V1.4 RAK WisCam Quick Start Guide V1.4 Shenzhen Rakwireless Technology Co., Ltd www.rakwireless.com info@rakwireless.com 2015 Rakwireless Reserves All Rights The Name Of Actual Companies And Products Mentioned

More information

HART / EtherNet/IP Gateway GT200-HT-EI User Manual V 1.0 REV A SST Automation

HART / EtherNet/IP Gateway GT200-HT-EI User Manual V 1.0 REV A SST Automation HART / EtherNet/IP Gateway GT200-HT-EI V 1.0 REV A SST Automation E-mail: SUPPORT@SSTCOMM.COM WWW.SSTCOMM.COM Catalog 1 Product Overview... 4 1.1 Product Function...4 1.2 Product Features... 4 1.3 Technical

More information

Bluetooth RS-232 Adapter

Bluetooth RS-232 Adapter BT-232B Bluetooth RS-232 Adapter with Internal Chip Antenna Bluetooth RS-232 Adapter User manual for BT-232B and BT-232B-E models BT Adapter Model BT-232B-E Bluetooth RS-232 Adapter with External Dipole

More information

BLE (Based on CSR1011) Bluetooth Module. User s Manual V1.3

BLE (Based on CSR1011) Bluetooth Module. User s Manual V1.3 BLE011 (Based on CSR1011) Bluetooth Module User s Manual V1.3 BLE011 1 TABLE OF CONTENTS 1 Introduction and Block Diagram... 3 1.1 General Introduction... 3 1.2 Block Diagram... 3 2 Main Features and Application...

More information

ARDUINO INDUSTRIAL 1 01 Code: A000126

ARDUINO INDUSTRIAL 1 01 Code: A000126 ARDUINO INDUSTRIAL 1 01 Code: A000126 The Industrial 101 is a small form-factor YUN designed for product integration. OVERVIEW: Arduino Industrial 101 is an Evaluation board for Arduino 101 LGA module.

More information

SmartBeacon-USB/USB-E

SmartBeacon-USB/USB-E SmartBeacon-USB/USB-E Outlook The Sensoro SmartBeacon-USB functions as a beacon while connected to a USB port. The device s craftsmanship is both energy efficient and aesthetic. Features 1. Ease of Use

More information

ETH to 232 (A) User Manual

ETH to 232 (A) User Manual ETH to 232 (A) User Manual ETH to 232 (A) is data transparent transmission equipment for convert TCP or UDP socket data to RS232, small size, low power, powered by ARM processors, high speed, high Stability.

More information

BM70 - BLEDK3 Application Note

BM70 - BLEDK3 Application Note BM70 - BLEDK3 Application Note Advanced Info Revision History Date Revision Content Version 2015/10/22 (Advanced Info) draft 1 Content 1. OVERVIEW... 3 2. EVB AND BLEDK3 TEST ENVIRONMENT... 3 2.1. BM70BLES1FC2

More information

Bluetooth to RS-232&RS422/485. EX-9132B/BI Bluetooth Adapter Operation Manual

Bluetooth to RS-232&RS422/485. EX-9132B/BI Bluetooth Adapter Operation Manual Bluetooth to RS-232&RS422/485 EX-9132B/BI Bluetooth Adapter Operation Manual First Edition, Jun 2008 Table of Contents 1. Introduction 2 2. Package checklist 3 3. Product Specification 4 4. Product Panel

More information

Document Name : User Manual for SC10B : RS232 to Bluetooth Converter.

Document Name : User Manual for SC10B : RS232 to Bluetooth Converter. Document Name : User Manual for SC10B : RS232 to Bluetooth Converter. SC10B is Bluetooth V.2.0-certified and is backward compatible with v1.1/1.2 devices. You can connect between your computers (Master)

More information

BLUE bean. Data sheet

BLUE bean. Data sheet Data sheet is a high performance and ultra low power surface mount USB radio combining single-stream 11ac Wave2 Wi-Fi and Bluetooth 5.0 in a very small form factor is IEEE 802.11b/g/n/a/ac Wave2 dual-band

More information

Sten-SLATE ESP Kit. Description and Programming

Sten-SLATE ESP Kit. Description and Programming Sten-SLATE ESP Kit Description and Programming Stensat Group LLC, Copyright 2016 Overview In this section, you will be introduced to the processor board electronics and the arduino software. At the end

More information

BLE MODULE SPECIFICATIONS

BLE MODULE SPECIFICATIONS WIRELESS-TAG BLE MODULE SPECIFICATIONS nrf51-01/02/dk Bluetooth Low Energy (BLE) module of nrf51-01/02 is the next generation BLE module released by SEMITRION electronics. The modules use nrf51822 from

More information

March 21, BT22 Datasheet. Amp ed RF Technology, Co., Ltd.

March 21, BT22 Datasheet. Amp ed RF Technology, Co., Ltd. March 21, 2011 BT22 Datasheet Amp ed RF Technology, Co., Ltd. BT22 Features Bluetooth features Bluetooth qualified Bluetooth v2.1+edr Class 2 radio Range up to 30m LOS Description 10.4 mm x 13.5 mm Our

More information

Dual Serial Shield User Manual

Dual Serial Shield User Manual Dual Serial Shield User Manual PN: 2050 Berkshire Products, Inc. Phone: 770-271-0088 http://www.bkp-store.com/ Rev: 1.00 Copyright 2013 Table of Contents 1 Introduction... 2 1.1 XB compatibility... 2 2

More information