Manual. Specifications. Contents. Options

Size: px
Start display at page:

Download "Manual. Specifications. Contents. Options"

Transcription

1 Page 1 ATE : : USB I/O Controller - 8 Inputs, 4/8 Relays The ATE-600 series is a range of modular I/O controllers. It uses small standardized boards which allows you to configure the system to your requirements. The ATE-601 is an I/O controller with 4 or 8 relays and 8 protected inputs. It can be controlled with ASCII commands via USB. Specifications 4 Relays 5A/250Vac with 1 common and 4 NO contacts Expandable to 8 Relays with ATE-201 Relay Board 8 Inputs with 10K pull-up resistors Inputs are protected to 30Vdc max. Inputs can measure analog and digital signals Connections via screw terminals Arduino software compatible Control with ASCII commands USB virtual COM with FTDI adapter or cable Powered via 5Vdc power supply Dimensions 10 x 8 x 6 cm (approx.) Open source hardware and software Made in Holland Contents The ATE-601 includes: ATE-101 Carrier Board with Arduino Pro Mini and ATE-601 Sketch firmware ATE-201 Relay Board with 4 relays ATE-202 Input Board with 8 inputs ATE-301 Back Panel Board Options The ATE-601 has the following options: ATE-201 Relay Board with 4 relays ACDC5012 Power Supply 5V USB Basic FTDI Adapter 5V (SFE09716) USB FTDI Cable 5V (SFE09718) Enclosure Hammond 1598E Enclosure Elbag MR6/HMX

2 Page 2 Assembly The ATE-601 should be assembled as follows. On the ATE-301 Back Panel Board, the ATE-101 Arduino board need to be placed on the 50 pins connector indicated with uc. Be aware all 50 pins are correctly connected and the board is correctly oriented (components on the outside). The ATE-202 Input Board should be placed on connector CON2 close to the uc board, with solder side facing each other.

3 Page 3 The ATE-201 Relay Boards can be placed on the other 50-pin connectors (CON3 and CON4). For connecting the wires to the boards it is recommended to take the board out of the Back Panel Board.

4 Page 4 Connections The ATE-201 Relay Board has 2 common connections and 4 NO (Normally Open) connections. The common connections are connected to each other and to the 4 relay contacts. The 5V power supply should be connected to one of the Relay Boards. OUT 1 OUT 2 OUT 3 OUT 4 COMMON COMMON 5V POWER INPUT The relays on the first module (Back Panel CON3) will be relay 1-4. The relays on the outside module (Back Panel CON4) will be relay 5-8.

5 Page 5 The ATE-202 Input Board has 8 inputs and one common connected to ground. The Board can be used to measure analog and digital signals. Analog 0V until +5Vdc. In the firmware digital logical level 0 is set at +0,5Vdc or less and logical level 1 at +2Vdc or more. The inputs have a 10K pull-up resistor to +5Vdc. A switch contact can be connected directly between input and GND (dry contact input). Also an open collector output can be connected directly to the input. FTDI Basic USB Board 5V Power Gnd Input 1 Input 2 Input 3 Input 4 Input 5 Input 6 Input 7 Input 8

6 Page 6 FTDI USB Cable 5V Power Gnd Input 1 Input 2 Input 3 Input 4 Input 5 Input 6 Input 7 Input 8 When an FTDI Cable is used make sure the green wire is connected to the pin indicated GRN and the black wire to the pin indicated BLK. Power is not connected. Power can be used as an alternative input to supply power to the ATE-601 controller. In this case jumpers on all boards must be changed. See the schematics for information on jumper settings. The analog inputs use the power supply of the microcontroller as reference. If you need a more stable reference, you can use this Power input to supply only the microcontroller. Power Supply A stabilized 5Vdc power supply (like ACDC5012) is recommended for the ATE-601. With one relay board maximum current is 300mA and with 2 relay boards 600mA. The ATE-601 with one relay board may be powered with USB. In this case jumpers on all boards must be changed. See the schematics for information on jumper settings. With 2 relay boards a 5Vdc power supply is required. All boards have a power on led.

7 Page 7 ATE-601 Tester The ATE-601 Tester is a Windows program which can be used to test the controller. This software and source code can be downloaded from When an FTDI USB Board or cable is connected for the first time, Windows will install the driver and will give it a port number. After opening the Tester, type in this port number and click on Open. The Tester will read the inputs continuously and show the results. When you click on Toggle, you can switch the relay on and off. For the relays and inputs, green indicates contact is closed and red indicates contact is open. To change the baud rate of the tester, click on Baud. To change the baud rate of the controller, use the SB command as described below. Communicating with the Controller The Address and Baud Rate of the unit can be set and are stored in the controller s memory. By default the controller is listening for serial data at 9600 baud, and has address 00. The controller will always use 1 Stop Bit, 8 Data Bits and No Parity. The commands the controller uses are in the CC X<CR> symbol is used to define the start of a command. AA is the address of the unit from 00 to 99. CC is a two letter command used to determine the command type. X is a one or more characters which determines the parameter for the command. <CR> is the carriage return character. This is ASCII character 13, or 0x0d.

8 Page 8 Each time a valid command is received the unit will respond with #AA followed by any values that are requested from the unit. ON: Relay On Command This command is used to turn a single relay on. ON 1 will turn relay 1 on for the unit with address 44. It can also be used to turn all the relays on, this occurs when the parameter value is 0. OF: Relay Off Command Similar to the on command this command will turn relays off in the same manner. OF 1 will turn relay 1 off for the unit with address OF 0 will turn all relays off. WR: Write Relays Command The write relays command is used when more than one relay is to be turned on or off at once. The parameter is a decimal number which, in binary, represents the on and off status of the 8 relays. The least significant bit of this value controls relay 1. The most significant bit of the parameter value controls relay 8. A set bit (1) turns the relay on, a cleared bit (0) turns the relay off. Example: To turn relays 1, 2 and 6 on (and others off) the binary value required is In decimal this is 35. (2^(1-1) + 2^(2-1) + 2^(6-1) = 35). To issue this to a controller with address 44, the required command WR 35 IS: Input Status Command This command will return the status of the inputs. If the parameter is between 1 and 8 then the controller will return a 0 or 1 corresponding to that input. IS 1 will return #441 if the input is closed (0V), or #440 if the input is open (+5V). If the parameter is 0 then the unit will respond with the status of all the inputs, in similar form as the Write Relays command. E.g.: If inputs 1 and 2 for the unit are on IS 0 will return # is 0011 in binary, and each bit represents each input from 4 down to 1. RS: Relay Status Command Much the same as the input status command, this command will return the status of the relays. If the parameter is between 1 and 8 then the unit will return with a 0 or 1 corresponding to that relay. RS 1 will return #441 if the relay is on, or #440 if the relay is off.

9 Page 9 If the parameter to this command is 0 then the unit will respond the same way as the input status command, but return the status of the relays. AI: Analog Input Command The analog input command will read the status of the analog input defined by the parameter and return it as a value between 0 and AI 1 will return # if the analog input is reading 50%. SA: Set Address Addresses are valid from A unit will only respond if its address in memory is the same as that of the command sent, or if the address of the command sent is 00. The address is saved to non-volatile memory inside the controller, meaning it will be preserved even after power is disconnect from the controller. SB: Set Baud Parameters from 1 to 10 are valid, corresponding to the following values. 1: 1200 baud 6: baud 2: 2400 baud 7: baud 3: 4800 baud 8: baud 4: 9600 baud (default) 9: baud 5: baud 10: baud The baud rate is saved to non-volatile memory inside the controller, meaning it will be preserved even after power is disconnect from the controller. Loading new firmware The ATE-601 uses the Arduino Pro Mini (5V) which is an Atmel ATmega328 microcontroller with Arduino bootloader. The Arduino is loaded with ATE-601 Sketch. The source code can be downloaded from You are free to modify the code. You can load the modified code or any other code via USB into the Arduino Pro Mini with the Arduino development environment, available at Before loading it is recommended to place the Auto Reset jumper on the ATE-101 Carrier Board. Power on and reset After power on there will be a short closure of relay 8. Power on reset and manual reset (button on Arduino Pro Mini) will start the Arduino bootloader to check if the

10 Page 10 Arduino development environment is active. During this short time the led on Arduino Pro Mini will lit. On the same output as the led, relay 8 is connected. Enclosures ATE-601 in Hammond 1598E ATE-601 in Elbag MR6/HMX for wall-mount or DIN-rail

KTA-223 Arduino Compatible Relay Controller

KTA-223 Arduino Compatible Relay Controller 8 Relay Outputs 5A 250VAC 4 Opto-Isolated Inputs 5-30VDC 3 Analog Inputs (10 bit) Connections via Pluggable Screw Terminals 0-5V or 0-20mA Analog Inputs, Jumper Selectable 5A Relay Switching Power Indicator

More information

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

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

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

RFID MODULE Mifare Reader / Writer SL025B User Manual Version 1.4 Nov 2012 StrongLink

RFID MODULE Mifare Reader / Writer SL025B User Manual Version 1.4 Nov 2012 StrongLink RFID MODULE Mifare Reader / Writer User Manual Version 1.4 Nov 2012 StrongLink CONTENT 1. MAIN FEATURES... 3 2. PINNING INFORMATION... 4 3. BAUD RATE SETTING... 5 4. COMMUNICATION PROTOCOL... 5 4-1. COMMUNICATION

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

STIM202 Evaluation Kit

STIM202 Evaluation Kit Table of contents: 1 FEATURES... 2 2 GENERAL DESCRIPTIONS AND SYSTEM CONTENTS... 2 3 SYSTEM REQUIREMENTS... 2 4 GETTING STARTED... 3 4.1 INSTALLATION OF NI-SERIAL CABLE ASSEMBLY DRIVER... 3 4.2 INSTALLATION

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

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

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

GPS/GLONASS SiRFstarV Evaluation Kit EVA5100-A

GPS/GLONASS SiRFstarV Evaluation Kit EVA5100-A GPS/GLONASS SiRFstarV Evaluation Kit EVA5100-A A Description of the Evaluation Board for Maestro s GPS/GLONASS Receiver Module A5100-A User s Manual Version 0.1 Revision History Rev. Date Description 0.1

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-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

Data Sheet. Adaptive Design ltd. Arduino Dual L6470 Stepper Motor Shield V1.0. 20 th November 2012. L6470 Stepper Motor Shield

Data Sheet. Adaptive Design ltd. Arduino Dual L6470 Stepper Motor Shield V1.0. 20 th November 2012. L6470 Stepper Motor Shield Arduino Dual L6470 Stepper Motor Shield Data Sheet Adaptive Design ltd V1.0 20 th November 2012 Adaptive Design ltd. Page 1 General Description The Arduino stepper motor shield is based on L6470 microstepping

More information

User s Manual of Board Microcontroller ET-MEGA2560-ADK ET-MEGA2560-ADK

User s Manual of Board Microcontroller ET-MEGA2560-ADK ET-MEGA2560-ADK User s Manual of Board Microcontroller ET-MEGA2560-ADK ET-MEGA2560-ADK Because Arduino that is the development project on AVR MCU as Open Source has been published, it is popular and widespread shortly.

More information

Communication with BushingGard using computer USB port

Communication with BushingGard using computer USB port Communication with BushingGard using computer USB port There are two ways of communication with BushingGard through computer USB port: Direct communication between computer USB port and BushingGard USB

More information

2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide

2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide 2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide 1. Introduction Thank you for purchasing this 2-Port RS232/422/485 Combo Serial to USB Adapter.

More information

Ocean Controls RC Servo Motor Controller

Ocean Controls RC Servo Motor Controller Ocean Controls RC Servo Motor Controller RC Servo Motors: RC Servo motors are used in radio-controlled model cars and planes, robotics, special effects, test equipment and industrial automation. At the

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

Model 201 Wiegand Touchpad Reader Installation Guide

Model 201 Wiegand Touchpad Reader Installation Guide Model 201 Wiegand Touchpad Reader Installation Guide P/N 460353001C 15AUG11 2011 UTC Fire & Security. All rights reserved. This document may not be copied in whole or in part or otherwise reproduced without

More information

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL WiFly Evaluation Kit 2012 Roving Networks. All rights reserved. Version 1.32r 10/9/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks evaluation kits,

More information

IP Link Device Interface Communication Sheet

IP Link Device Interface Communication Sheet This document provides additional assistance with wiring your Extron IP Link enabled product to your device. Different components may require a different wiring scheme than those listed below. For complete

More information

DOSISYS. Hands Free Reader LDM 210 - LDM 220. User Manual 127356A

DOSISYS. Hands Free Reader LDM 210 - LDM 220. User Manual 127356A DOSISYS LDM 210 - LDM 220 Hands Free Reader User Manual 127356A Publication, translation and reproduction total or partial of this document is strictly forbidden without authorization MGP Instruments

More information

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page

More information

Modular I/O System Analog and Digital Interface Modules

Modular I/O System Analog and Digital Interface Modules OPERATING INSTRUCTIONS Modular I/O System Analog and Digital Interface Modules Installation Operation Maintenance Document Information Document ID Title: Operating Instructions Modular I/O System Part

More information

SYMETRIX SOLUTIONS: TECH TIP August 2015

SYMETRIX SOLUTIONS: TECH TIP August 2015 String Output Modules The purpose of this document is to provide an understanding of operation and configuration of the two different String Output modules available within SymNet Composer. The two different

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

Programming Device Manual Booklet AVR Prog USB v2

Programming Device Manual Booklet AVR Prog USB v2 Programming Device Manual Booklet AVR Prog USB v2 Programming device manual booklet: AVR Prog USB v2, STK500 v2 www.and-tech.pl Page 1 Content 1. Installation...3 2. HID mode drivers installation....3

More information

RS-232 Baud Rate Converter CE Model 232BRC Documentation Number 232BRC-3903 (pn5104-r003)

RS-232 Baud Rate Converter CE Model 232BRC Documentation Number 232BRC-3903 (pn5104-r003) S-232 Baud ate Converter CE Model 232BC Documentation Number 232BC-3903 (pn5104-r003) International Headquarters B&B Electronics Mfg. Co. Inc. 707 Dayton oad -- P.O. Box 1040 -- Ottawa, IL 61350 USA Phone

More information

INTRODUCTION TO SERIAL ARM

INTRODUCTION TO SERIAL ARM INTRODUCTION TO SERIAL ARM A robot manipulator consists of links connected by joints. The links of the manipulator can be considered to form a kinematic chain. The business end of the kinematic chain of

More information

PolyBot Board. User's Guide V1.11 9/20/08

PolyBot Board. User's Guide V1.11 9/20/08 PolyBot Board User's Guide V1.11 9/20/08 PolyBot Board v1.1 16 pin LCD connector 4-pin SPI port (can be used as digital I/O) 10 Analog inputs +5V GND GND JP_PWR 3-pin logic power jumper (short top 2 pins

More information

- 35mA Standby, 60-100mA Speaking. - 30 pre-defined phrases with up to 1925 total characters.

- 35mA Standby, 60-100mA Speaking. - 30 pre-defined phrases with up to 1925 total characters. Contents: 1) SPE030 speech synthesizer module 2) Programming adapter kit (pcb, 2 connectors, battery clip) Also required (for programming) : 4.5V battery pack AXE026 PICAXE download cable Specification:

More information

DK40 Datasheet & Hardware manual Version 2

DK40 Datasheet & Hardware manual Version 2 DK40 Datasheet & Hardware manual Version 2 IPC@CHIP DK40 Evaluation module Beck IPC GmbH http://www.bcl.de page 1 of 11 Table of contents Table of contents... 2 Basic description... 3 Characteristics...

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

AN00140-003: Using Wago CANOpen IO

AN00140-003: Using Wago CANOpen IO AN00140-003: Using Wago CANOpen IO Overview Baldor now offers WAGO Modular IO Systems for use with Mint Motion Controllers using the CANOpen field bus interface. The WAGO units provide a very flexible

More information

Board also Supports MicroBridge

Board also Supports MicroBridge This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)

More information

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm Six-servo Robot Arm 1 1, Introduction 1.1, Function Briefing Servo robot, as the name suggests, is the six servo motor-driven robot arm. Since the arm has a few joints, we can imagine, our human arm, in

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

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

IP Link Device Interface Communication Sheet

IP Link Device Interface Communication Sheet This document provides additional assistance with wiring your Extron IP Link enabled product to your device. Different components may require a different wiring scheme than those listed below. For complete

More information

ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL

ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL X1: DE-9 serial connector Used to connect computer (or other devices) using RS-232 standard. Needs a serial cable, with at least

More information

Troubleshooting and Diagnostics

Troubleshooting and Diagnostics Troubleshooting and Diagnostics The troubleshooting and diagnostics guide provides instructions to assist in tracking down the source of many basic controller installation problems. If there is a problem

More information

NOW LEAD-FREE! VCCIO VCCIO RXLED TXLED DTR# 10K FTDI FT232R

NOW LEAD-FREE! VCCIO VCCIO RXLED TXLED DTR# 10K FTDI FT232R DLP--G USB / SERIAL ADAPTER NOW LEAD-FREE! DLP- USB Type 'B' Mini connector to Host PC/ Linux/Mac V VCC USBDP USBDM LED LED DTR# IO Voltage Select Jumper 0K User uc, up, DSP, FPGA Reset External VCC.0

More information

UniPi technical documentation REV 1.1

UniPi technical documentation REV 1.1 technical documentation REV 1.1 Contents Overview... 2 Description... 3 GPIO port map... 4 Power Requirements... 5 Connecting Raspberry Pi to UniPi... 5 Building blocks... 5 Relays... 5 Digital Inputs...

More information

ALL-USB-RS422/485. User Manual. USB to Serial Converter RS422/485. ALLNET GmbH Computersysteme 2015 - Alle Rechte vorbehalten

ALL-USB-RS422/485. User Manual. USB to Serial Converter RS422/485. ALLNET GmbH Computersysteme 2015 - Alle Rechte vorbehalten ALL-USB-RS422/485 USB to Serial Converter RS422/485 User Manual ALL-USB-RS422/485 USB to RS-422/485 Plugin Adapter This mini ALL-USB-RS422/485 is a surge and static protected USB to RS-422/485 Plugin Adapter.

More information

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Leonardo Journal of Sciences ISSN 1583-0233 Issue 20, January-June 2012 p. 31-36 Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Ganesh Sunil NHIVEKAR *, and Ravidra Ramchandra MUDHOLKAR

More information

Mini Effect Gizmo. User s Manual. RJM Music Technology, Inc.

Mini Effect Gizmo. User s Manual. RJM Music Technology, Inc. Mini Effect Gizmo User s Manual RJM Music Technology, Inc. Mini Effect Gizmo User s Manual Version 1.3 September 26, 2013 RJM Music Technology, Inc. 2525 Pioneer Ave #1 Vista, CA 92081 E-mail: support@rjmmusic.com

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

RC2200DK Demonstration Kit User Manual

RC2200DK Demonstration Kit User Manual Demonstration Kit User Manual Table of contents TABLE OF CONTENTS... 1 QUICK INTRODUCTION... 2 INTRODUCTION... 3 DEMONSTRATION BOARD... 4 POWER SUPPLY SECTION... 5 RS-232 INTERFACE... 6 CONNECTORS... 7

More information

HCS-3300/3302/3304 USB Remote Programmable Laboratory Grade Switching Mode Power Supply

HCS-3300/3302/3304 USB Remote Programmable Laboratory Grade Switching Mode Power Supply 1. INTRODUCTION HCS-3300/3302/3304 USB Remote Programmable Laboratory Grade Switching Mode Power Supply User Manual This family of efficient, upgraded SMPS with small form factor, auto cross over CV CC,

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

VSCOM USB PRO Series Industrial I/O Adapters

VSCOM USB PRO Series Industrial I/O Adapters VSCOM USB PRO Series Industrial I/O Adapters 1.Introduction The VSCOM USB PRO Series Industrial I/O Adapters are advanced USB to Serial Adapters that connect to 1, 2, 4 or 8 RS-232/422/485 serial devices.

More information

WEA-Base. User manual for load cell transmitters. UK WEA-Base User manual for load cell transmitters Version 3.2 UK

WEA-Base. User manual for load cell transmitters. UK WEA-Base User manual for load cell transmitters Version 3.2 UK WEA-Base User manual for load cell transmitters 1 Contents 1. Technical data... 3 2. Assembly... 4 2.1 Power supply... 4 2.2 Load cells... 4 2.3 RS-485... 4 2.4 Relays... 5 2.5 Digital input... 5 2.6 Analogue

More information

SenseLink TM. End-Point Controller. Addendum

SenseLink TM. End-Point Controller. Addendum SenseLink TM End-Point Controller Addendum MKS Instruments, Inc. Control & Information Technology Products Group 3350 Scott Blvd Bldg 4 Santa Clara, CA 95054 Main: 408.235.7620 Fax: 408.235.7625 SenseLink

More information

EvB 5.1 v5 User s Guide

EvB 5.1 v5 User s Guide EvB 5.1 v5 User s Guide Page 1 Contents Introduction... 4 The EvB 5.1 v5 kit... 5 Power supply...6 Programmer s connector...7 USB Port... 8 RS485 Port...9 LED's...10 Pushbuttons... 11 Potentiometers and

More information

PUSH BUTTON START INSTALLATION MANUAL

PUSH BUTTON START INSTALLATION MANUAL PUSH BUTTON START INSTALLATION MANUAL ALTHOUGH THIS PRODUCT HAS BEEN THOROUGHLY TESTED KPIERSON TECHNOLOGIES ASSUMES NO RESPONSIBILITY FOR ANY DAMAGE THAT MAY RESULT BY THE INSTALLATION OF THIS PRODUCT.

More information

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation UPS PIco Uninterruptible Power Supply with Peripherals and I 2 C control Interface to be used with Raspberry Pi B+, A+, B, and A HAT Compliant Raspberry Pi is a trademark of the Raspberry Pi Foundation

More information

How to read this guide

How to read this guide How to read this guide The following shows the symbols used in this Quick start guide with descriptions and examples. Symbol Description Example P oint Reference Caution [ ] This symbol explains information

More information

INSTALLATION MANUAL XM3 Reader

INSTALLATION MANUAL XM3 Reader INSTALLATION MANUAL XM3 Reader Conditions Transactions, deliveries et cetera will be according to the general terms of delivery as deposited at the Chamber of Commerce at Meppel, The Netherlands. Registration

More information

T3 Mux M13 Multiplexer

T3 Mux M13 Multiplexer T3 Mux M13 Multiplexer User Manual [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract

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

GSM Controller BR160GM-Gate

GSM Controller BR160GM-Gate GSM Controller BR160GM-Gate Gate opener version for Gate control. GSM module for SMS remote monitoring and control applications Alarm Notification Remote Control www.bieneelectronics.com Features Internal

More information

Complete Train Control. Run Your Trains, Not Your Track! 1 PR3 Programmer 1 USB Cable 1 This Instruction sheet

Complete Train Control. Run Your Trains, Not Your Track! 1 PR3 Programmer 1 USB Cable 1 This Instruction sheet PR3 Complete Train Control Run Your Trains, Not Your Track! PR3 Decoder Programmer USB Programmer/Interface PR3 Features n Multifunction USB 2.0 PC connectivity for your railroad n Digitrax SoundLoader

More information

Keep it Simple Timing

Keep it Simple Timing Keep it Simple Timing Support... 1 Introduction... 2 Turn On and Go... 3 Start Clock for Orienteering... 3 Pre Start Clock for Orienteering... 3 Real Time / Finish Clock... 3 Timer Clock... 4 Configuring

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

PLC training panel (Twido version)

PLC training panel (Twido version) PLC training panel (Twido version) User manual Name School of Trades Produced by: GJR October 2012 Colour leaves: 9 BW leaves: 2 Cover colour: White Cover image: G.J.Rogerson Acknowledgments: Much of the

More information

ABACOM - netpio. http://www.abacom-online.de/div/setup_netpio.exe

ABACOM - netpio. http://www.abacom-online.de/div/setup_netpio.exe ABACOM - netpio Download http://www.abacom-online.de/div/setup_netpio.exe The ABACOM netpio board is a 10Mbit network interface designed for measurement and control applications. The board is available

More information

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V]

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V] FG085 minidds Function Generator Manual of Operation Applicable Models: 08501, 08501K, 08502K, 08503, 08503K Applicable Firmware Version: 1 ) 113-08501-100 or later (for U5) 2 ) 113-08502-030 or later

More information

TURBO PROGRAMMER USB, MMC, SIM DEVELOPMENT KIT

TURBO PROGRAMMER USB, MMC, SIM DEVELOPMENT KIT TURBO PROGRAMMER USB, MMC, SIM DEVELOPMENT KIT HARDWARE GUIDE This document is part of Turbo Programmer documentation. For Developer Documentation, Applications and Examples, see http:/// PRELIMINARY (C)

More information

EVAL-UFDC-1/UFDC-1M-16

EVAL-UFDC-1/UFDC-1M-16 Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1

More information

EMBEDDED ACCESS CONTROL Hardware Installation Guide

EMBEDDED ACCESS CONTROL Hardware Installation Guide EMBEDDED ACCESS CONTROL Hardware Installation Guide Lenel goentry Hardware Installation Guide, product version 1.00. This guide is item number DOC- ENHW-ENU, revision 1.003, April 2009 Copyright 2009 Lenel

More information

Technical Manual. For use with Caller ID signaling types: Belcore 202, British Telecom, & ETSI

Technical Manual. For use with Caller ID signaling types: Belcore 202, British Telecom, & ETSI Technical Manual For use with Caller ID signaling types: Belcore 202, British Telecom, & ETSI Caller ID.com WHOZZ CALLING? POS 2 Caller ID Monitoring Unit Technical Manual For use with Caller ID signaling

More information

Fiber Optic Selector Guide for Analog & Digital Data Links, Contact Closures & Multiplexers

Fiber Optic Selector Guide for Analog & Digital Data Links, Contact Closures & Multiplexers Fiber Optic Selector Guide for Analog & Digital Data Links, Contact Closures & Multiplexers Analog Data Links Multi-Channel Contact Closures Multiplexers Digital Data Links - Contact Closures Power Supply

More information

Knowledge Base Article. Integrating ISONAS Access Control System with TagMaster LR-series RFID Readers

Knowledge Base Article. Integrating ISONAS Access Control System with TagMaster LR-series RFID Readers Knowledge Base Article Integrating ISONAS Access Control System with TagMaster LR-series RFID Readers Copyright 2009-2012, ISONAS Security Systems All rights reserved Table of Contents 1: INTRODUCTION...

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

Connecting instruments serially to your computer

Connecting instruments serially to your computer Connecting instruments serially to your computer This TechNote will review how to connect instruments (GPS, Sounder, Heading Sensor ) to a computer. Important points such as electrical specification (RS-232

More information

M68EVB908QL4 Development Board for Motorola MC68HC908QL4

M68EVB908QL4 Development Board for Motorola MC68HC908QL4 M68EVB908QL4 Development Board for Motorola MC68HC908QL4! Axiom Manufacturing 2813 Industrial Lane Garland, TX 75041 Email: Sales@axman.com Web: http://www.axman.com! CONTENTS CAUTIONARY NOTES...3 TERMINOLOGY...3

More information

SPROG DCC Decoder Programmer

SPROG DCC Decoder Programmer SPROG DCC Decoder Programmer Operating Manual Firmware Version 3.4 April 2004 2004 Andrew Crosland web: http://www.sheerstock.fsnet.co.uk/dcc/sprog e-mail: dcc@sheerstock.fsnet.co.uk Disclaimer You build,

More information

PRT3 Printer Module: ASCII Protocol Programming Instructions

PRT3 Printer Module: ASCII Protocol Programming Instructions PRT3 Printer Module: ASCII Protocol Programming Instructions We hope this product performs to your complete satisfaction. Should you have any questions or comments, please visit www.paradox.com and send

More information

UPiS - Uninterruptible Power intelligent Supply

UPiS - Uninterruptible Power intelligent Supply UPiS - Uninterruptible Power intelligent Supply www.pimodules.com Introduction The UPiS is an Advanced Powering add-on Module for the RaspberryPi that adds a wealth of additional features to the powering

More information

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Installing a hard disk 1. Power off the unit. 2. Remove the bottom cover from the unit by removing four screws. 3. Insert the 2.5 HDD to the

More information

MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual

MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual Version: 1.0.1 Dec. 2005 Table of Contents I. Introduction 2 II. Operations 2 II.1. Theory of Operation 2 II.2. Configuration (PC-PC

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

EDI Distributor Control Interface Wiring and Setup Instructions

EDI Distributor Control Interface Wiring and Setup Instructions Universal I/O EDI Distributor Control Interface Wiring and Setup Instructions EDI UNIVERSAL I/O INTERFACE MODULE The only interface needed for EDI-V5 controls Network compatible with all older EDI controls

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

Troubleshooting and Diagnostics

Troubleshooting and Diagnostics Troubleshooting and Diagnostics The troubleshooting and diagnostics guide provides instructions to assist in tracking down the source of many basic controller installation problems. If there is a problem

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

A RF18 Remote control receiver MODULE

A RF18 Remote control receiver MODULE A RF18 Remote control receiver MODULE User Guide No part of this document may be reproduced or transmitted (in electronic or paper version, photocopy) without Adeunis RF consent. This document is subject

More information

16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide

16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide 16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide 1. Introduction Thank you for purchasing this 16-Port RS232 to USB2.0 High Speed Multi Serial Adapter. It is an

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

TEECES DOME LIGHTING SYSTEMS

TEECES DOME LIGHTING SYSTEMS This lighting system was designed by John V (Teeces) to be a simple, customizable, expandable and affordable solution for dome lighting. An Arduino micro-controller is used to tell LED driver chips which

More information

485USBTB-2W & 485USBTB-4W

485USBTB-2W & 485USBTB-4W RS-485 2-Wire RS-485 4-Wire Connector Data Rate Connector Standard Data Rate Source Input Voltage Consumption Driver CD Dimensions Enclosure Weight Operating Temp Storage Temp Op Humidity MTBF MTBF Method

More information

PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999

PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 232 232232 PCMCIA 1 Port RS232 2.1 EDITION OCTOBER 1999 Guarantee. FULL 36 MONTHS GUARANTEE. We guarantee your interface card for a full 36 months from purchase, parts and labour, provided it has been

More information

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual

SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual SUDT AccessPort TM Advanced Terminal / Monitor / Debugger Version 1.37 User Manual Version 1.0 - January 20, 2015 CHANGE HISTORY Version Date Description of Changes 1.0 January 20, 2015 Initial Publication

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

ACU-1000 Manual Addendum Replacement of CPM-2 with CPM-4

ACU-1000 Manual Addendum Replacement of CPM-2 with CPM-4 ACU-1000 Manual Addendum Replacement of CPM-2 with CPM-4 1 PURPOSE:... 1 2 CPM-4/CPM-2 COMPATIBILITY... 2 2.1 NETWORK CABLES... 2 2.2 FACTORY DEFAULT SETTINGS... 2 2.3 CHANGING THE RS-232 SERIAL PORT BAUD

More information

Arduino Due Back. Warning: Unlike other Arduino boards, the Arduino Due board runs at 3.3V. The maximum. Overview

Arduino Due Back. Warning: Unlike other Arduino boards, the Arduino Due board runs at 3.3V. The maximum. Overview R Arduino Due Arduino Due Front Arduino Due Back Overview The Arduino Due is a microcontroller board based on the Atmel SAM3X8E ARM Cortex-M3 CPU (datasheet). It is the first Arduino board based on a 32-bit

More information

ET-BASE AVR ATmega64/128

ET-BASE AVR ATmega64/128 ET-BASE AVR ATmega64/128 ET-BASE AVR ATmega64/128 which is a Board Microcontroller AVR family from ATMEL uses MCU No.ATmega64 and ATmega128 64PIN. Board ET-BASE AVR ATmega64/128 uses MCU s resources on

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS LIGHTING CONTROL PANELS 4 AND 8 RELAYS INSTALLATION INSTRUCTIONS INSTALLATION OVERVIEW The installation instructions contained in this document are provided as a guide for proper and reliable installation.

More information

The CW Machine Hardware

The CW Machine Hardware The CW Machine Hardware 2014 Ulrich H. Steinberg The CW Machine Hardware Version 2.2 1 Contents Introduction...3 Connecting the Hardware...4 The Configuration Switches...6 Power Considerations...8 Serial

More information