AN INTRODUCTION TO BLUETOOTH MODULES (HC-05 & HC-06)

Size: px
Start display at page:

Download "AN INTRODUCTION TO BLUETOOTH MODULES (HC-05 & HC-06)"

Transcription

1 AN INTRODUCTION TO BLUETOOTH MODULES (HC-05 & HC-06) An Introduction to Bluetooth Modules 1 P a g e

2 Contents Introduction to Bluetooth Technology... 2 Advantages and Disadvantages... 3 Advantages... 3 Disadvantages... 3 Introduction to HC-05 and HC-06 Modules... 3 HC HC Hooking up with Arduino... 5 HC-05 with Arduino... 5 HC-06 with Arduino... 7 Configuring HC-05 with AT commands... 7 HOW TO PAIR TWO BLUETOOTH MODULES (HC-05)... 9 WIRELESS PROGRAMMING USING HC-05 BLUETOOTH MODULE Step 1: Install the latest beta version of Arduino Step 2: Bread-board the Bluetooth module setup circuit Step 3: Upload the setup sketch Step 5: Setup the Bluetooth module in Windows Step 6: Set-up the Bluetooth module in Windows (cont'd) Step 7: Solder a jumper onto the Bluetooth module Step 9: Program the Arduino with Bluetooth References Introduction to Bluetooth Technology Bluetooth is a wireless communication technology used for exchange of data over short distances. It is found in many devices ranging from mobile phones and computers. Bluetooth technology is a combination of both hardware and software. It is intended to create a personal area networks (PAN) over a short range. It operates in the unlicensed industrial, scientific and medical (ISM) band at 2.4 to GHz. It uses a radio technology called frequency hopping spread spectrum. Bluetooth technology s adaptive frequency hopping (AFH) was designed to reduce interference between wireless technologies sharing the 2.4 GHz spectrum. This adaptive hopping among 79 frequencies at 1 MHz intervals gives a high degree interference immunity. Thus the Bluetooth divides the data that need to be transmitted into packets and each packet are transmitted on one of 79 designated Bluetooth channels. The bandwidth of each channel is 1 MHz.It is An Introduction to Bluetooth Modules 2 P a g e

3 a packet-based protocol with a master-slave structure. Each master can communicate with up to 7 slaves in a piconet. The range of Bluetooth depends upon the class of radio using. Class 3 radios have range up to 1 meter or 3 feet. Class 2 radios have range of 10 meters or 33 feet. Class 1 radios have range of 100 meters or 300 feet. The most commonly used radio is Class 2. Advantages and Disadvantages Advantages The biggest advantage of using this technology is that there are no cables or wires required for the transfer of data over short ranges. Bluetooth technology consumes less power when compared with other wireless communication technologies. For example Bluetooth technology using Class 2 radio uses power of 2.5 mw. As it is using frequency hopping spread spectrum radio technology there is less prone to interference of data if the other device also operates in the same frequency range. Bluetooth doesn t require clear line of sight between the synced devices. Disadvantages Since it uses the greater range of Radio Frequency (RF), it is much more open to interception and attack. It can be used for short range communications only. Although there are fewer disadvantages, Bluetooth still remains best for short wireless technology. Introduction to HC-05 and HC-06 Modules HC 05 HC-05 is a class 2 Bluetooth module with Serial Port Profile (SPP). It can be configure either as master or salve. It is a replacement for wired serial connection. An Introduction to Bluetooth Modules 3 P a g e

4 The datasheet of the Bluetooth module is below HC-05 Specification: Bluetooth Protocol : Bluetooth Specification v2.0 + EDR Frequency : 2.4 GHz ISM band Profiles : Bluetooth Serial Port Working Temperature : -20 to + 75 centigrade Power of emitting : 3 dbm The pins on the module are: Vcc Power supply for the module. GND Ground of the module. TX Transmitter of Bluetooth module. RX Receiver of the module. Key Used for the module to enter into AT command mode. HC 06 HC-06 is a drop-in replacement for wired serial connection. This can be used as serial port replacement to establish connection between PC and MCU (Microcontroller). This is a Slave Mode only Bluetooth device. This module can be configured for baud rates 1200 to bps. The datasheet of HC-06 module is in the below link: HC-06 Module Features: An Introduction to Bluetooth Modules 4 P a g e

5 Encrypted connection Frequency : GHz Bluetooth core v2.0 Serial Port Profile (SPP) support Hooking up with Arduino HC-05 with Arduino The connections are: HC-05 Arduino Vcc > 5V GND > GND TX > RX RX > TX HC-05 is connected to Arduino as shown in above figure. The Bluetooth module will be blinking with a delay of 1 second when it is powered. If HC-05 is to be paired from PC, search for the available Bluetooth devices from PC and there should be a device named HC-05. Pair with it and the default passcode is 1234(You can change it later from AT commands). If HC-05 is paired it blinks it with a delay of 2 seconds. If a Bluetooth module is connected to laptop it opens a COM port, hence in PC using Device Manager search for which COM port the Bluetooth module is connected. An Introduction to Bluetooth Modules 5 P a g e

6 Let s control the LED on Arduino using a basic code to send command over Bluetooth. The code is below. char ch; void setup() { Serial.begin(9600); pinmode(13,output); } void loop() { if(serial.available()) { ch=serial.read(); if(ch=='h') { digitalwrite(13,high); } if(ch=='l') { digitalwrite(13,low); } } } In the above code if h (without quotes) is entered in the Serial port the LED (which is interconnected to 13 th pin of Arduino) will glow. If l (without quotes) is entered the LED will turn off. Now upload the code to Arduino and pair with HC-05 and open the COM port to which HC-05 is connected. Now enter the commands h or l to control the Arduino. Thus, successfully you controlled the Arduino using HC-05. You can make the changes to code as per your requirement. Note: Here the HC-05 TX and RX are connected to RX (0) and TX (0) of Arduino Uno. If you use other Arduino there are more than one serial ports. So while writing the code write correct serial port number to which RX and TX of HC-05 are connected. For example if you use Arduino MEGA there are 4 serial ports. Consider if TX and RX of HC-05 are connected to RX (1) and TX (1) of MEGA then replace Serial with Serial1 in code and upload it. An Introduction to Bluetooth Modules 6 P a g e

7 HC-06 with Arduino The connections are: HC-06 Vcc > 5V Arduino GND > GND TX > RX RX > TX HC-06 is same as HC-05 but the only difference is HC-06 is slave mode only while HC-05 can be configured as either master or slave. Hence the program used for HC-05 can be used for this module also and can control the Arduino. Configuring HC-05 with AT commands HC-05 can be configured i.e. its name and password can be changed and many more using AT commands. It can also be configured as either master or slave. To set the HC-05 into AT command mode the KEY pin of the module is made high i.e. it is connected to either 5V or 3.3V pin of Arduino and TX of Arduino is connected to TX of HC-05 and RX of HC-05 to RX of Arduino. The connections with Arduino are shown in the below figure: An Introduction to Bluetooth Modules 7 P a g e

8 Power up the Arduino after connecting HC-05 to it. It is known that HC-05 entered into AT command mode by observing the blinking of LED on Bluetooth module. It blinks with a delay of 2 seconds. To enter the AT commands open up the COM port of the Arduino to which the Bluetooth module is connected and set the baud rate to After opening COM port if you enter command AT (without quotes) it should return OK thus it can be said that HC-05 entered into AT command mode. Let s see some of AT commands to change the name and password of HC-05 module. To change the name enter command AT + NAME = <Param> (without quotes). Where <Param> is Bluetooth device name. To change the password enter command AT + PSWD =<Param> (without quotes). Where <Param> is Bluetooth device passkey (default is 1234). To check the role (master or slave) of the Bluetooth device enter command AT+ROLE? (without quotes). If it returns 0 it is in Slave mode, if it returns 1 it is in Master mode. You can also set the role of HC-05 using command AT + ROLE = <Param> Where Param=0 for Slave mode and 1 for Master mode. An Introduction to Bluetooth Modules 8 P a g e

9 The above are basic AT commands you can use. It will return OK after each command is executed. The below is the list of AT commands you can use for configuring your Bluetooth module _serial_module_AT_commamd_set_201104_revised.pdf These AT commands are used to set the baud rate, name, passkey, remote Bluetooth device address etc. HOW TO PAIR TWO BLUETOOTH MODULES (HC-05) It is quite simple to pair a Bluetooth module from your Android phone. But bit tricky to pair it with another HC-05 module. In this post I ll describe the method of pairing 2 Bluetooth modules. One of the module is assigned ROLE as MASTER & the other left as SLAVE. By default all HC-05 modules are SLAVES. Using AT commands the module can be configured as we like. To configure the SLAVE we make use of an Arduino UNO board. Not much of configuration needed for slave. We can leave it to defaults. But to know the ADDRESS of the slave you ve to follow this procedure. Before connecting the HC05 module, upload an empty sketch to Arduino. This bypasses the Boot loader of UNO & the Arduino is used as USB- UART converter. An Introduction to Bluetooth Modules 9 P a g e

10 After uploading this empty sketch, remove USB power from Arduino & do the following connections with HC05 Slave: - ARDUINO HC05 Rx (pin0) > Rx TX (pin1) > TX +5v > VCC GND > GND +3.3V > KEY Remember it is one to one connection here & not cross connection Now provide the USB cable power to Arduino. The HC-05 module enters the Command mode with Baud Rate Open the Serial Monitor of Arduino. Ensure to select BOTH NL & CR & Baud Rate as at the bottom of the serial monitor. This is very important as the Bluetooth module HC- 05 expects both Carriage Return and Line Feed after every AT command. An Introduction to Bluetooth Modules 10 P a g e

11 If you type in AT & click on SEND button you should get an OK confirmation from the HC-05 module. If you get ERROR (0) try again to enter the Command mode. If there is no response then check whether correct COM port has been assigned in Arduino IDE & confirm Baud Rate is 38400, Both NL & CR selected. Type in AT+NAME? To get the name of the module. You can change the name as you like with AT+NAME=HC05_SLAVE The password by default is 1234.Confirm that with AT+PSWD? The ROLE of the module can be known by typing AT+ROLE? You can change it by AT+ROLE=0 (0 for SLAVE & 1 for Master). Leave it as 0 as we want this module to be SLAVE. You should know the Address of this module to make it pair with another. Type in AT+ADDR? & note the Address. Here it is 14:2: While using this address in AT commands you should replace the colon with a comma, like 14, 2, An Introduction to Bluetooth Modules 11 P a g e

12 Now remove the KEY connection from the HC05 module & disconnect the power. Again provide the power to see STATUS LED on the module blinking fast indicating that it is looking for a PAIR. Now we have the slave Bluetooth module ready. Now we have to setup the master Bluetooth module. NOTE: SAME CONNECTION IS USED FOR CONFIGURING THE MASTER MODULE AS THAT OF SLAVE MODULE. If you type in AT & click on SEND button you should get an OK confirmation from the HC-05 module. If you get ERROR (0) try again to enter the Command mode. If there is no response then check whether correct COM port has been assigned in Arduino IDE & confirm Baud Rate is 38400, Both NL & CR selected. Type in AT+NAME? To get the name of the module. You can change the name as you like with AT+NAME=HC05_MASTER The password by default is 1234.Confirm that with AT+PSWD? The ROLE of the module can be known by typing AT+ROLE? Change it master mode by typing following AT command: AT+ROLE=1 (0 for SLAVE & 1 for Master) Now, type the following AT Command to pair with the slave module. AT+LINK=14, 2, NOTE: BEFORE TYPING THIS AT COMMAND, MAKE SURE THAT OTHER MODULE MUST BE POWERED SO THAT THEY CAN BE PAIRED. If it returns OK it means the module is set to pair with the slave module when both module are switched on at same time. Hence, the two modules are paired. WIRELESS PROGRAMMING USING HC-05 BLUETOOTH MODULE We generally program the Arduino board USB cable. But using HC-05 Bluetooth module we can program the Arduino board without USB cable that is by An Introduction to Bluetooth Modules 12 P a g e

13 wirelessly. We need to modify the hardware little bit for the wireless programming and steps required for wireless module are shown below. Step 1: Install the latest beta version of Arduino The current beta version of the Arduino IDE has fixed some of the issues that made Bluetooth programming difficult in the past. The most current version available today is Arduino r2. You can download the installer from: Step 2: Bread-board the Bluetooth module setup circuit The Bluetooth module used in this project is the HC-05. It is inexpensive and one of the most common modules you'll see in a lot of other projects. The HC-05 is sold bare or mounted to a breakout board. You want one on a 6-pin breakout board. Using a breadboard, temporarily wire the HC-05 Bluetooth module per the schematic. With 3.3v on the Key pin, the module will enter baud command mode and will accept AT commands. The Key pin must be connected to An Introduction to Bluetooth Modules 13 P a g e

14 3.3v when the module is powered on. If it is connected afterwards, the module will enter command mode at the default baud rate (as set by the 'AT+UART=' command or 9600 baud from the factory). Step 3: Upload the setup sketch An Introduction to Bluetooth Modules 14 P a g e

15 The above sketch is attached below, upload it to your Arduino. /* Serial Loop */ #include <SoftwareSerial.h> #define rxpin 8 #define txpin 9 SoftwareSerial myserial(rxpin, txpin); // RX, TX char mychar ; void setup() { Serial.begin(9600); Serial.println("AT"); } myserial.begin(38400); myserial.println("at"); void loop() { while (myserial.available()) { mychar = myserial.read(); Serial.print(myChar); } } while (Serial.available()) { mychar = Serial.read(); Serial.print(myChar); //echo myserial.print(mychar); } An Introduction to Bluetooth Modules 15 P a g e

16 Step 4: Run the setup sketch and enter serial commands Open the serial console and make sure the baud rate is set to 9600 and line endings is set to be "Both NL & CR" Enter the following AT commands into the serial console. AT AT+ORGL AT+ROLE=0 AT+POLAR=1,0 AT+UART=115200,0,0 AT+INIT In order, these commands tell the module to reset to factory settings, switch to slave role (transparent serial bridge), set pin 32 low on An Introduction to Bluetooth Modules 16 P a g e

17 Bluetooth connection, change baud rate to match the Arduino Uno programming rate, and to initialize. Disconnect 3.3v from the Key pin and cycle the power to the module. It will now be running at baud and be in pairing mode. An Introduction to Bluetooth Modules 17 P a g e

18 Step 5: Setup the Bluetooth module in Windows An Introduction to Bluetooth Modules 18 P a g e

19 From the Control Panel select add a Device. Add the Bluetooth module. Select enter pairing code option. Step 6: Set-up the Bluetooth module in Windows (cont'd) An Introduction to Bluetooth Modules 19 P a g e

20 Enter "1234" for the pairing code. At the Add a device success window, click Close. Device ready to use. The OS will create two serial COM ports associated with the device. Always use the one with the lower number. An Introduction to Bluetooth Modules 20 P a g e

21 Step 7: Solder a jumper onto the Bluetooth module Disassemble the bread boarded circuit. Solder a jumper wire directly to the HC-05's Pin 32. Don't forget to use flux. You may want to use hot glue or tape to protect the joint. Step 8: Build the programmer circuit. An Introduction to Bluetooth Modules 21 P a g e

22 Build the programmer circuit onto the prototyping shield. Solder on a female header for the Bluetooth module if you want to be able to easily remove it later. An Introduction to Bluetooth Modules 22 P a g e

23 Step 9: Program the Arduino with Bluetooth Power on the Arduino from a battery or AC adapter. In the Arduino IDE, choose the serial port of the Bluetooth module (the lower valued one of the two) and then upload a sketch like normal. Hence the Arduino board is programmed wirelessly using HC-05 Bluetooth module. References 05how-to-pair-2-modulesat-command-walkthrough/ An Introduction to Bluetooth Modules 23 P a g e

Bluetooth HC-06 with serial port module Easy guide

Bluetooth HC-06 with serial port module Easy guide 1 Bluetooth HC-06 with serial port module Easy guide This manual consists of 3 parts: PART 1. Overview of Bluetooth HC-06 module with serial port. PART 2. Installing Bluetooth HC-06 module with Bolt 18F2550

More information

Bluetooth to Serial Adapter

Bluetooth to Serial Adapter Bluetooth to Serial Adapter Third Edition, Oct 2007 Version 3.0 771-BTS1009C3-001 Contents 1.0 Features....P.2 2.0 Package Content....P.2 3.0 Hard Drives Requirement.P.2 4.0 Specifications.P.3 5.0 Pin

More information

Arduino Wifi shield And reciever. 5V adapter. Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the shield:

Arduino Wifi shield And reciever. 5V adapter. Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the shield: the following parts are needed to test the unit: Arduino UNO R3 Arduino Wifi shield And reciever 5V adapter Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the

More information

Bluetooth to serial HC-06 wireless module

Bluetooth to serial HC-06 wireless module Bluetooth to serial HC-06 wireless module Product Description: 1,Mainstream CSR Bluetooth chip, Bluetooth V2.0 protocol standards 2,serial module operating voltage 3.3V. 3,the baud rate for 1200, 2400,

More information

Guangzhou HC Information Technology Co., Ltd. Product Data Sheet

Guangzhou HC Information Technology Co., Ltd. Product Data Sheet Guangzhou HC Information Technology Co., Ltd. Product Data Sheet Rev 1 Module Data Sheet 1.0 2.0 2.1 2.2 2006/6/18 2006/9/6 2010/4/22 2011/4/6 DRAWN BY : Ling Xin MODEL : HC-06 CHECKED BY : Eric Huang

More information

Lab 6 Introduction to Serial and Wireless Communication

Lab 6 Introduction to Serial and Wireless Communication University of Pennsylvania Department of Electrical and Systems Engineering ESE 111 Intro to Elec/Comp/Sys Engineering Lab 6 Introduction to Serial and Wireless Communication Introduction: Up to this point,

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information

Using Xbee 802.15.4 in Serial Communication

Using Xbee 802.15.4 in Serial Communication Using Xbee 802.15.4 in Serial Communication Jason Grimes April 2, 2010 Abstract Instances where wireless serial communication is required to connect devices, Xbee RF modules are effective in linking Universal

More information

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Building a Basic Communication Network using XBee DigiMesh Jennifer Byford April 5, 2013 Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Abstract: Using Digi International s in-house

More information

Bluetooth Installation

Bluetooth Installation Overview Why Bluetooth? There were good reasons to use Bluetooth for this application. First, we've had customer requests for a way to locate the computer farther from the firearm, on the other side of

More information

Wireless Communication With Arduino

Wireless Communication With Arduino Wireless Communication With Arduino Using the RN-XV to communicate over WiFi Seth Hardy shardy@asymptotic.ca Last Updated: Nov 2012 Overview Radio: Roving Networks RN-XV XBee replacement : fits in the

More information

2.4G Bluetooth Datalink & ipad Ground Station User Guide V1.02

2.4G Bluetooth Datalink & ipad Ground Station User Guide V1.02 2.4G Bluetooth Datalink & ipad Ground Station User Guide V1.02 Thank you for purchasing DJI products. Please strictly follow this user guide to mount and connect the 2.4G Bluetooth Datalink, install the

More information

MANUAL FOR RX700 LR and NR

MANUAL FOR RX700 LR and NR MANUAL FOR RX700 LR and NR 2013, November 11 Revision/ updates Date, updates, and person Revision 1.2 03-12-2013, By Patrick M Affected pages, ETC ALL Content Revision/ updates... 1 Preface... 2 Technical

More information

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION The Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier is a multi-functional compact device. It

More information

Cisco Aironet Wireless Bridges FAQ

Cisco Aironet Wireless Bridges FAQ Cisco Aironet Wireless Bridges FAQ Document ID: 16041 Contents Introduction What is the Cisco Aironet Wireless Bridge? What are the different platforms of wireless bridges that Cisco offers? Where can

More information

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1

In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1 RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer

More information

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide Get to Know the MRB-KW01x Module UART Selector ANT 1 RFIO (TX/RX) USB 2.0 Serial

More information

Condemn the copycat company copied behavior on HM-10!!!!!! If you buy a fake, please apply for a refund guarantee your legitimate rights

Condemn the copycat company copied behavior on HM-10!!!!!! If you buy a fake, please apply for a refund guarantee your legitimate rights Condemn the copycat company copied behavior on HM-10!!!!!! If you buy a fake, please apply for a refund guarantee your legitimate rights and interests -------------------------------------------------------Last

More information

RN-52 Bluetooth Hookup Guide

RN-52 Bluetooth Hookup Guide Page 1 of 14 RN-52 Bluetooth Hookup Guide CONTRIBUTORS: JOELEB Overview The RN-52 is a sleek Bluetooth audio module from Roving Networks. It allows you to send stereo audio over a wireless Bluetooth connection.

More information

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / 22. www.dragino.com

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / 22. www.dragino.com Yun Shield User Manual VERSION: 1.0 Version Description Date 0.1 Initiate 2014-Jun-21 1.0 Release 2014-Jul-08 Yun Shield User Manual 1 / 22 Index: 1 Introduction... 3 1.1 What is Yun Shield... 3 1.2 Specifications...

More information

Ethernet Radio Configuration Guide

Ethernet Radio Configuration Guide Ethernet Radio Configuration Guide for Gateway, Endpoint, and Repeater Radio Units April 20, 2015 Customer Service 1-866-294-5847 Baseline Inc. www.baselinesystems.com Phone 208-323-1634 FAX 208-323-1834

More information

Secure Ethernet Gateway SEG-1 and SEG-M for IEI Access Systems Installation Manual

Secure Ethernet Gateway SEG-1 and SEG-M for IEI Access Systems Installation Manual Secure Ethernet Gateway SEG-1 and SEG-M for IEI Access Systems Installation Manual Section 1: Introduction SECURITY WARNING: New SEG's shipped after April 2008 will have Telnet setup option enabled by

More information

DSX Master Communications

DSX Master Communications DSX Access Systems, Inc. PC to Master Controller - Direct Connect Communications DSX Master Communications Communications between the Comm Server PC and the Master Controller can take several forms which

More information

Arduino Lesson 5. The Serial Monitor

Arduino Lesson 5. The Serial Monitor Arduino Lesson 5. The Serial Monitor Created by Simon Monk Last updated on 2013-06-22 08:00:27 PM EDT Guide Contents Guide Contents Overview The Serial Monitor Arduino Code Other Things to Do 2 3 4 7 10

More information

Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface

Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Application te Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Abstract This

More information

How to setup the UCW232C Serial WiFi adapter

How to setup the UCW232C Serial WiFi adapter How to setup the UCW232C Serial WiFi adapter (based on Windows 7, 32/64-bit) This step-by-step guide explains how to get started using the Serial RS232 WiFi Adapter part UCW232C and Serial RS485 / RS422

More information

BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter

BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter BIT COMMANDER Serial RS232 / RS485 to Ethernet Converter (Part US2000A) Copyrights U.S. Converters 1 Contents Overview and Features... 3 Functions..5 TCP Server Mode... 5 Httpd Client Mode.5 TCP Auto mode....6

More information

DSO138 oscilloscope program upgrade method

DSO138 oscilloscope program upgrade method DSO138 oscilloscope program upgrade method Applicable models: 13801K, 13802K Program upgrade Principle The DSO138 is a SCM STM32F103C8 internal oscilloscope that is preinstalled with a flash bootloader,

More information

RN-XV-RD2 Evaluation Board

RN-XV-RD2 Evaluation Board RN-XV-RD2 Evaluation Board 2012 Roving Networks. All rights reserved. -1.01Version 1.0 9/28/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks RN-XV-RD2

More information

How to setup a serial Bluetooth adapter Master Guide

How to setup a serial Bluetooth adapter Master Guide How to setup a serial Bluetooth adapter Master Guide Nordfield.com Our serial Bluetooth adapters part UCBT232B and UCBT232EXA can be setup and paired using a Bluetooth management software called BlueSoleil

More information

RS-232 Communications Using BobCAD-CAM. RS-232 Introduction

RS-232 Communications Using BobCAD-CAM. RS-232 Introduction RS-232 Introduction Rs-232 is a method used for transferring programs to and from the CNC machine controller using a serial cable. BobCAD-CAM includes software for both sending and receiving and running

More information

PM1122 INT DIGITAL INTERFACE REMOTE

PM1122 INT DIGITAL INTERFACE REMOTE PM1122 INT DIGITAL INTERFACE REMOTE PM1122 INT front panel description: 1. Clear wireless remotes knob: push this button for more than 2 seconds to clear the list of all assigned wireless remote settings

More information

RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards

RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards 2012 Roving Networks. All rights reserved. Version 1.0 9/7/2012 USER MANUAL OVERVIEW The RN-131 and RN-171 WiFly radio modules are complete, standalone

More information

Bluetooth for device discovery. Networking Guide

Bluetooth for device discovery. Networking Guide Bluetooth for device discovery Networking Guide Index Document Version: v4.4-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 1.1. General description...3 2. Hardware... 5 2.1.

More information

ESP8266 WiFi Module Quick Start Guide

ESP8266 WiFi Module Quick Start Guide ESP8266 WiFi Module Quick Start Guide Introduction Your ESP8266 is an impressive, low cost WiFi module suitable for adding WiFi functionality to an existing microcontroller project via a UART serial connection.

More information

Guangzhou HC Information Technology Co., Ltd. Product Data Sheet

Guangzhou HC Information Technology Co., Ltd. Product Data Sheet Guangzhou HC Information Technology Co., Ltd. Product Data Sheet Module Data Sheet Rev 1 1.0 1.01 2010/5/15 2011/4/6 DRAWN BY : Ling Xin MODEL : HC-05 CHECKED BY : Eric Huang Description: BC04 has external

More information

Guangzhou HC Information Technology Co., Ltd. Product Data Sheet

Guangzhou HC Information Technology Co., Ltd. Product Data Sheet Guangzhou HC Information Technology Co., Ltd. Product Data Sheet Module Data Sheet Rev 1 1.0 1.01 2010/5/15 2011/4/6 DRAWN BY : Ling Xin MODEL : HC-05 CHECKED BY : Eric Huang Description: BC04 has external

More information

Serial to Bluetooth Adapter

Serial to Bluetooth Adapter Serial to Bluetooth Adapter Serial (RS-232) to Bluetooth Class 1 Adapter ICRS232BT1 Actual product may vary from photo FCC Compliance Statement This equipment has been tested and found to comply with the

More information

IR Communication a learn.sparkfun.com tutorial

IR Communication a learn.sparkfun.com tutorial IR Communication a learn.sparkfun.com tutorial Available online at: http://sfe.io/t33 Contents Getting Started IR Communication Basics Hardware Setup Receiving IR Example Transmitting IR Example Resources

More information

Bluetooth Serial Adapter

Bluetooth Serial Adapter RN-BT-SRL-UM Bluetooth Serial Adapter 0 Roving Networks. All rights reserved. RN-BT-SRL-UM-.0 Version.0 //0 USER MANUAL RN-BT-SRL-UM-.0 OVERVIEW Roving Networks offers a variety of Bluetooth serial adapters

More information

WPR400 Wireless Portable Reader

WPR400 Wireless Portable Reader P516-098 WPR400 Wireless Portable Reader User guide Para el idioma español, navegue hacia www.schlage.com/support. Pour la portion française, veuillez consulter le site www.schlage.com/support. Contents

More information

Testing Data Radio Modem with Serial Port Tool V1.20

Testing Data Radio Modem with Serial Port Tool V1.20 Testing Data Radio Modem with Serial Port Tool V1.20 This document demonstrates how to test the communication of data radio modem with tool Advanced Serial Port Monitor from AGG Software and USB board.

More information

EZ-View Network Communications Guide www.cszindustrial.com

EZ-View Network Communications Guide www.cszindustrial.com Network Communications Guide EzView Network Communications Guide RevB July 2013 (V2.2) Supersedes: RevA (May 2011) Cincinnati Sub-Zero Products, LLC 513-772-8810 12011 Mosteller Road Cincinnati, Ohio 45241

More information

PHYS 2P32 Project: MIDI for Arduino/ 8 Note Keyboard

PHYS 2P32 Project: MIDI for Arduino/ 8 Note Keyboard PHYS 2P32 Project: MIDI for Arduino/ 8 Note Keyboard University April 13, 2016 About Arduino: The Board Variety of models of Arduino Board (I am using Arduino Uno) Microcontroller constructd similarly

More information

2.4G Bluetooth Datalink & ipad Ground Station User Guide V1.12

2.4G Bluetooth Datalink & ipad Ground Station User Guide V1.12 2.4G Bluetooth Datalink & ipad Ground Station User Guide V1.12 Thank you for purchasing DJI products. Please strictly follow this user guide to mount and connect the 2.4G Bluetooth Datalink, install the

More information

Waspmote. Quickstart Guide

Waspmote. Quickstart Guide Waspmote Quickstart Guide Index Document version: v4.3-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 2. General and safety information... 4 3. Waspmote s Hardware Setup...

More information

CAN-Bus Shield Hookup Guide

CAN-Bus Shield Hookup Guide Page 1 of 8 CAN-Bus Shield Hookup Guide Introduction The CAN-Bus Shield provides your Arduino or Redboard with CAN-Bus capabilities and allows you to hack your vehicle! CAN-Bus Shield connected to a RedBoard.

More information

Guide to programming a Rako wireless module system using Rasoft

Guide to programming a Rako wireless module system using Rasoft Guide to programming a Rako wireless module system using Rasoft Table of Contents Perform basic health check of the system... 2 Start programming the system... 2 Create a new Rasoft Project File...2 Choose

More information

MeshBee Open Source ZigBee RF Module CookBook

MeshBee Open Source ZigBee RF Module CookBook MeshBee Open Source ZigBee RF Module CookBook 2014 Seeed Technology Inc. www.seeedstudio.com 1 Doc Version Date Author Remark v0.1 2014/05/07 Created 2 Table of contents Table of contents Chapter 1: Getting

More information

Bidirectional wireless communication using EmbedRF

Bidirectional wireless communication using EmbedRF Bidirectional wireless communication using EmbedRF 1. Tools you will need for this application note... 2 2. Introduction... 3 3. Connect EmbedRF Board to USB Interface Board... 3 4. Install and Run EmbedRF

More information

[USING THE NM150 WITH ADULTICIDING] July 13, 2015

[USING THE NM150 WITH ADULTICIDING] July 13, 2015 Reason Adulticiding 3.5 includes support for the New Mountain NM150 Weather Station. Adulticiding fogger log point details include temperature, wind speed, and wind direction. These can be recorded from

More information

www.dragino.com Yun Shield Quick Start Guide VERSION: 1.0 Version Description Date 1.0 Release 2014-Jul-08 Yun Shield Quick Start Guide 1 / 14

www.dragino.com Yun Shield Quick Start Guide VERSION: 1.0 Version Description Date 1.0 Release 2014-Jul-08 Yun Shield Quick Start Guide 1 / 14 Yun Shield Quick Start Guide VERSION: 1.0 Version Description Date 1.0 Release 2014-Jul-08 Yun Shield Quick Start Guide 1 / 14 Index: 1 Introduction... 3 1.1 About this quick start guide... 3 1.2 What

More information

Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System

Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System Using a Laptop Computer with a USB or Serial Port Adapter to Communicate With the Eagle System ECU DB9 USB 20-060_A.DOC Page 1 of 18 9/15/2009 2009 Precision Airmotive LLC This publication may not be copied

More information

WIRELESS INSTRUMENTATION TECHNOLOGY

WIRELESS INSTRUMENTATION TECHNOLOGY BS&B WIRELESS, L.L.C. BS&B WIRELESS, L.L.C. WIRELESS INSTRUMENTATION TECHNOLOGY Printed February 2004 BS&B WIRELESS, L.L.C. 7422-B East 46th Place, Tulsa, OK74145 Phone: 918-622-5950 Fax: 918-665-3904

More information

NETGEAR Trek N300 Travel Router and Range Extender

NETGEAR Trek N300 Travel Router and Range Extender NETGEAR Trek N300 Travel Router and Range Extender PR2000 Installation Guide NETGEAR Reset /LAN LAN Contents Get Started........................................... 3 Connect on the Go..................................

More information

Manual Instruction for. AU06-DL13W/RGB/30K MiLight Wifi LED Controller

Manual Instruction for. AU06-DL13W/RGB/30K MiLight Wifi LED Controller Important: Read all instructions prior to installation. Manual Instruction for AU06-DL13W/RGB/30K MiLight Wifi LED Controller After completing this simple setup using just your smartphone or tablet and

More information

Step-by-Step Tutorial For Using LinkSprite UART- WIFI Module Model LS_UART_WIFI

Step-by-Step Tutorial For Using LinkSprite UART- WIFI Module Model LS_UART_WIFI Step-by-Step Tutorial For Using LinkSprite UART- WIFI Module Model LS_UART_WIFI Page 1 of 12 Hardware needed A desktop/laptop PC with WiFi adaptor A WiFi router This Uart-Wifi module model number LS_UART_WIFI

More information

PICAXE RF CONNECT KIT (AXE213)

PICAXE RF CONNECT KIT (AXE213) PICAXE RF CONNECT KIT (AXE213) Kit Contents: PCB AXE213 Transmitter & Receiver PCB Pair R1-3 10k resistor (brown black orange gold) R4-5 470 resistor (yellow violet brown gold) R6 22k resistor (red red

More information

125 8880 telstra.com/ppmbb visit a telstra store or partner GETTING TO KNOW YOUR

125 8880 telstra.com/ppmbb visit a telstra store or partner GETTING TO KNOW YOUR FOR MORE INFORMATIoN: 125 8880 telstra.com/ppmbb visit a telstra store or partner GETTING TO KNOW YOUR Telstra PRE-paid 4G wi-fi LET S GET THIS SHOW ON THE ROad WHAT S INSIDE Your Telstra Pre-Paid 4G Wi-Fi

More information

The LimitlessLED Wifi Bridge 4.0 is compatible with RGBW(new), RGB(old), and Dual White(current) LimitlessLED lightbulbs.

The LimitlessLED Wifi Bridge 4.0 is compatible with RGBW(new), RGB(old), and Dual White(current) LimitlessLED lightbulbs. www.limitlessled.com Wifi Bridge Receiver 4.0 User Guide The LimitlessLED Wifi Bridge 4.0 is compatible with RGBW(new), RGB(old), and Dual White(current) LimitlessLED lightbulbs. User Guide last updated

More information

PN532 NFC RFID Module User Guide

PN532 NFC RFID Module User Guide PN532 NFC RFID Module User Guide Version 3 Introduction NFC is a popular technology in recent years. We often heard this word while smart phone company such as Samsung or HTC introduces their latest high-end

More information

WUA-0605 300Mbps Wireless USB Network Adapter

WUA-0605 300Mbps Wireless USB Network Adapter WUA-0605 300Mbps Wireless USB Network Adapter User Manual V1.0 Certification FCC CE FCC Statement This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant

More information

DragonLink User Guide

DragonLink User Guide DragonLink User Guide Chris Seto, 2012 R5 8/24/2012 This document is in beta status. 1 P a g e Table of Contents 1) Quick Start checklist 2) DragonLink Versions 3) Getting to know the DragonLink hardware

More information

Arduino ADK Back. For information on using the board with the Android OS, see Google's ADK documentation.

Arduino ADK Back. For information on using the board with the Android OS, see Google's ADK documentation. Arduino ADK Arduino ADK R3 Front Arduino ADK R3 Back Arduino ADK Front Arduino ADK Back Overview The Arduino ADK is a microcontroller board based on the ATmega2560 (datasheet). It has a USB host interface

More information

TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL

TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL w w w. c d v g r o u p. c o m CA-ETHR-A: TCP/IP Module Installation Manual Page Table of Contents Introduction...5 Hardware Components... 6 Technical Specifications...

More information

Jabra FREEWAY. User manual. www.jabra.com

Jabra FREEWAY. User manual. www.jabra.com Jabra FREEWAY User manual www.jabra.com CONTENTS THANK YOU...2 ABOUT YOUR...2 WHAT YOUR SPEAKERPHONE CAN DO...3 GETTING STARTED...4 CHARGE YOUR SPEAKERPHONE...4 TURNING YOUR SPEAKERPHONE ON AND OFF...5

More information

Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000

Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000 Programming and Using the Courier V.Everything Modem for Remote Operation of DDF6000 1.0 Introduction A Technical Application Note from Doppler System July 5, 1999 Version 3.x of the DDF6000, running version

More information

Application of IEEE 802.15 to Distribute Cell Phone Calls through a Home Phone Network

Application of IEEE 802.15 to Distribute Cell Phone Calls through a Home Phone Network Application of IEEE 802.15 to Distribute Cell Phone Calls through a Home Phone Network Student Members: Danny Szczotka Chris Switzer Project Advisor: Dr. Liuqing Yang Graduate Student Advisor: Bo Yu Department

More information

To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification:

To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification: PURPOSE Verify that communication is established for the following products programming option (488.2 compliant, SCPI only): DCS - M9C & DCS M130, DLM M9E & DLM-M9G & DLM M130, DHP - M9D, P series, SG,

More information

Advanced Data Capture and Control Systems

Advanced Data Capture and Control Systems Advanced Data Capture and Control Systems Tronisoft Limited Email: sales@tronisoft.com Web: www.tronisoft.com RS232 To 3.3V TTL User Guide RS232 to 3.3V TTL Signal Converter Modules P/N: 9651 Document

More information

XBee USB Adapter Board (#32400)

XBee USB Adapter Board (#32400) 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

Arduino DUE + DAC MCP4922 (SPI)

Arduino DUE + DAC MCP4922 (SPI) Arduino DUE + DAC MCP4922 (SPI) v101 In this document it will described how to connect and let a Digital/Analog convert work with an Arduino DUE. The big difference between and Arduino DUE and other Arduinos

More information

Using the VEX Cortex with ROBOTC

Using the VEX Cortex with ROBOTC Using the VEX Cortex with ROBOTC This document is a guide for downloading and running programs on the VEX Cortex using ROBOTC for Cortex 2.3 BETA. It is broken into four sections: Prerequisites, Downloading

More information

Bluetooth UART/RS232 Module

Bluetooth UART/RS232 Module Introduction BLUEMORE600 is a professional, slim, wireless module ready for integration in brand new or existing electronic products. Based on CSR chipset BC03MM it s fully compatible for Serial Port profiles.

More information

Accessing AT&T U-verse Web Remote

Accessing AT&T U-verse Web Remote Accessing AT&T U-verse Web Remote How can I maximize my home networking connections? A wired network is the best way to get the maximum possible download and upload speeds because your computer is connected

More information

GETTING TO KNOW YOUR TELSTRA PRE-PAID 3G WI-FI

GETTING TO KNOW YOUR TELSTRA PRE-PAID 3G WI-FI GETTING TO KNOW YOUR TELSTRA PRE-PAID 3G WI-FI LET S GET THIS SHOW ON THE ROAD You must be excited about your brand new Telstra Pre-Paid 3G Wi-Fi. This guide will help you get connected as quickly and

More information

Preparing the Computers for TCP/IP Networking

Preparing the Computers for TCP/IP Networking Configuration Preparing the Computers for TCP/IP Networking Configuring Windows 98, and ME for TCP/IP Networking Verifying TCP/IP Properties Configuring Windows 2000 or XP for IP Networking Install or

More information

Using HyperTerminal with Agilent General Purpose Instruments

Using HyperTerminal with Agilent General Purpose Instruments Using HyperTerminal with Agilent General Purpose Instruments Windows HyperTerminal can be used to program most General Purpose Instruments (not the 531xx series counters) using the RS-232 Serial Bus. Instrument

More information

DOORKING SYSTEMS 1830 SERIES NETWORK WORKSHOP LAN APPLICATIONS ACCESS CONTROL SOLUTIONS LOCAL AREA NETWORK (LAN) CONNECTION REV 04.

DOORKING SYSTEMS 1830 SERIES NETWORK WORKSHOP LAN APPLICATIONS ACCESS CONTROL SOLUTIONS LOCAL AREA NETWORK (LAN) CONNECTION REV 04. DOORKING SYSTEMS ACCESS CONTROL SOLUTIONS 1830 SERIES NETWORK WORKSHOP LAN APPLICATIONS REV 04.11 LOCAL AREA NETWORK (LAN) CONNECTION Ethernet Connection: An Ethernet Cable, or wireless connection must

More information

User Manual. AS-Interface Programmer

User Manual. AS-Interface Programmer AS-Interface Programmer Notice: RESTRICTIONS THE ZMD AS-INTERFACE PROGRAMMER HARDWARE AND ZMD AS-INTERFACE PROGRAMMER SOFTWARE IS DESIGNED FOR IC EVALUATION, LABORATORY SETUP AND MODULE DEVELOPMENT ONLY.

More information

GSM Interfacing Board

GSM Interfacing Board Campus Component Pvt. Ltd. DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component Pvt. Ltd. assumes no responsibility arising from

More information

RN-41/RN-41-N Class 1 Bluetooth Module

RN-41/RN-41-N Class 1 Bluetooth Module RN-41/RN-41-N Class 1 Bluetooth Module Features Fully qualified Bluetooth version 2.1 module, supports version 2.1 + Enhanced Data Rate (EDR) Backwards-compatible with Bluetooth version 2.0, 1.2, and 1.1

More information

Introduction. Getting familiar with chipkit Pi

Introduction. Getting familiar with chipkit Pi Overview: chipkit Pi Introduction chipkit Pi (Designed for Raspberry Pi) is the latest Arduino compatible chipkit platform from Microchip and element14. It features a 32 bit PIC32 microcontroller in a

More information

1. Make sure that no client accounts are open. 2. Click on Setup, then click Modem. The Modem Setup window will appear.

1. Make sure that no client accounts are open. 2. Click on Setup, then click Modem. The Modem Setup window will appear. SECURITY SYSTEM MANAGEMENT SOFTWARE FOR WINDOWS WINLOAD MODEM SETUP The modem setup is a very important step in the connection process. If the modem setup is not properly completed communication between

More information

RDF1. RF Receiver Decoder. Features. Applications. Description. Ordering Information. Part Number Description Packages available

RDF1. RF Receiver Decoder. Features. Applications. Description. Ordering Information. Part Number Description Packages available RDF1 RF Receiver Decoder Features Complete FM Receiver and Decoder. Small Form Factor Range up to 200 Metres* Easy Learn Transmitter Feature. Learns 40 transmitter Switches 4 Digital and 1 Serial Data

More information

GSM Alarm System User Manual

GSM Alarm System User Manual GSM Alarm System User Manual For a better understanding of this product, please read this user manual thoroughly before using it. Quick Guider After getting this alarm system, you need to do the following

More information

USB to RS-422/485 Serial Adapter

USB to RS-422/485 Serial Adapter USB to RS-422/485 Serial Adapter User Manual Ver. 2.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction... 3 1.2

More information

DECT Module UM-9802 Datasheet

DECT Module UM-9802 Datasheet UWIN TECHNOLOGIES CO., LTD. DECT Module UM-9802 Datasheet V2.1 1 UWIN TECHNOLOGIES CO., LTD. Contents 1. Introduction... 3 2. Features... 3 3. DECT Module Application... 3 4. DECT Module function block...

More information

How to setup the UCW232C Serial WiFi adapter

How to setup the UCW232C Serial WiFi adapter How to setup the UCW232C Serial WiFi adapter This step-by-step guide explains how to get started using the Serial RS232 WiFi Adapter part UCW232C and Serial RS485 / RS422 WiFi adapter part UCW4842. These

More information

User Guide. E-Series Routers

User Guide. E-Series Routers User Guide E-Series Routers Table of Contents Table of Contents Product overview E900/E1200/E1500/E2500/E3200 1 Back view 1 Bottom view 1 E4200 2 Top view 2 Back view 2 Setting Up Your E-Series Router

More information

RFD radio modem software manual For RFD900A, RFD900u, RFD900+ radio modems

RFD radio modem software manual For RFD900A, RFD900u, RFD900+ radio modems RFD radio modem software manual For RFD900A, RFD900u, RFD900+ radio modems RFDesign Pty Ltd 6/97 Jijaws Street Sumner Park, QLD 4074 rfdesign.com.au 1. Pin Signals and Layout... 3 a) RFD900a... 3 b) RFD900u...

More information

iloq P10S.10/20 Programming device User's Guide

iloq P10S.10/20 Programming device User's Guide iloq P10S.10/20 Programming device User's Guide CONTENTS CONTENTS... 2 GENERAL... 3 USING THE PROGRAMMING DEVICE... 5 Starting the programming device... 5 Programming of locks... 5 Programming of keys...

More information

Work with Arduino Hardware

Work with Arduino Hardware 1 Work with Arduino Hardware Install Support for Arduino Hardware on page 1-2 Open Block Libraries for Arduino Hardware on page 1-9 Run Model on Arduino Hardware on page 1-12 Tune and Monitor Models Running

More information

User Manual Revision 1.400 English Converter / Adapter Ethernet to RS232 / RS485 (Order Code: HD67038-2 HD67038-2-M HD67038-25 HD67038-25-M)

User Manual Revision 1.400 English Converter / Adapter Ethernet to RS232 / RS485 (Order Code: HD67038-2 HD67038-2-M HD67038-25 HD67038-25-M) Document code: MN67038-2_ENG Revision 1.400 Page 1 of 25 User Manual Revision 1.400 English Converter / Adapter Ethernet to RS232 / RS485 (Order Code: HD67038-2 HD67038-2-M HD67038-25 HD67038-25-M) for

More information

Disclaimers. Important Notice

Disclaimers. Important Notice Disclaimers Disclaimers Important Notice Copyright SolarEdge Inc. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means,

More information

Surveillance System Using Wireless Sensor Networks

Surveillance System Using Wireless Sensor Networks Surveillance System Using Wireless Sensor Networks Dan Nguyen, Leo Chang Computer Engineering, Santa Clara University Santa Clara, California, USA dantnguyen84@gmail.com chihshun@gmail.com Abstract The

More information

Single channel data transceiver module WIZ2-434

Single channel data transceiver module WIZ2-434 Single channel data transceiver module WIZ2-434 Available models: WIZ2-434-RS: data input by RS232 (±12V) logic, 9-15V supply WIZ2-434-RSB: same as above, but in a plastic shell. The WIZ2-434-x modules

More information

TO RJ45&WIFI CONVERT SERVER

TO RJ45&WIFI CONVERT SERVER RS232/RS485 TO RJ45&WIFI CONVERT SERVER (USR-WIFI232-610) Hard version: V1.0 File version: V1.0 Jinan USR IOT Technology Limited page 1 of 22 freda@usr.so Content 1. Product Introduce... 3 1.1 Function...3

More information

TOSR0X-D. USB/Wireless Timer Relay Module. User Manual. Tinysine Electronics @ 2013 Version 1.0

TOSR0X-D. USB/Wireless Timer Relay Module. User Manual. Tinysine Electronics @ 2013 Version 1.0 TOSR0X-D USB/Wireless Timer Relay Module User Manual Tinysine Electronics @ 2013 Version 1.0 INTRODUCTION This USB/Wireless Timer Relay Module allows computer control switching of external devices by using

More information

Arduino Lesson 1. Blink

Arduino Lesson 1. Blink Arduino Lesson 1. Blink Created by Simon Monk Last updated on 2015-01-15 09:45:38 PM EST Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink'

More information