B BasicATOM Lab Board Data Sheet

Size: px
Start display at page:

Download "B BasicATOM Lab Board Data Sheet"

Transcription

1

2 Feature Overview: Includes x LCD Display Solderless Prototyping Board.mm Power Connector USB Connector Using FTDI All ATOM Module Compatible Basic Stamp Compatible Power Status LED LED Indicator Lights Tactile Switches User Potentiometer BuiltIn Speaker Servo or I/O Connectors RevD Basic Micro BasicATOM Lab Board USB C PIN U > U U L SPK SERVO PWR BasicMicro.com (c) 00 SOUT ATN C LCD Button POWER Basic Micro Technology at work Button Button Button Analog R R C J R Contrast RESET 0 0 AX0 S Servo Connectors PWR I/O 0 S POT Basic Description The BasicATOM Lab Board is designed to be a full experimentation center for BasicATOM, BasicATOM Pro or Basic Stamp modules. The x LCD allows users to easily integrate display technology with their BASIC code. The Lab Board includes a solderless breadboard area for the construction of auxiliary circuitry, as well as builtin tactile buttons, LED indicators, Potentiometer and a bank of headers capable of controlling up servos. USB and RS Programming the installed module can be done by using the on board USB connection or DB RS connector. Compatible The BasicATOM Lab Board is compatible with all BasicATOM, BasicATOM Pro and Basic Stamp modules.

3 Hardware Overview: A B C L U USB J SOUT C ATN C L R POWER Basic Micro Technology at work U > PIN C E BasicMicro.com (c) 00 D RevD F G U LCD R Analog K SPK RESET Contrast R Button Button Button Button SERVO PWR 0 0 AX0 Basic Micro BasicATOM Lab Board H S POT 0 J Servo Connectors I/O PWR I A:.mm Power Jack Center Positive, to VDC B: DB RS connector. RS and USB connected to module and SOUT pins. (Remove jumpers at J to use RS (DB). C: USB connector. (FTDI) USB chip. RS and USB connected to module and SOUT pins. D:,,, 0 Pin BasicATOM or BasicATOM Pro module socket. E: x Character LCD display. HD0 based. F: LCD contrast control potentiometer and master RESET button for BasicATOM or BasicATOM Pro. G: LEDs, Tactile Switches, Potentiometer. User accessible though header shown in I. H: Solderless Breadboard. I: Peripherals header to access LED, Tactile Switches, Potentiometer and Piezo Speaker. J: Servo or I/O male headers. Male headers can be connected directly to a Servo motor or used for GPIO (General Purpose I/O). Note: Power to headers can be set to regulated vdc or by Servo Pwr header ( is direct power in from.mm connector). Headers are connected to from top of board to bottom. K: Piezo speaker. L: FTDI. J jumpers can be removed to disconnect the FTDI from circuit. Or can be used to access the FTDI for your own configuration using jumper wires. NOTE: Remove jumpers at J to use RS (DB).

4 J Jumpers The jumpers on J should be installed if using USB to program the ATOM module in the on board socket. To program the ATOM modules using RS (DB) the J jumpers should be removed. You must remove any cables connected to the DB connector when using USB to program the ATOM. J SOUT ATN USB C PIN > U U L SOUT ATN POWER Basic Micro Technology at work R C J C Pinouts: =USB TXD =USB RXD =USB RTS =ATOM =ATOM SOUT =ATOM ATN RevD Basic Micro BasicATOM Lab Board SPK SERVO PWR Servo Connectors U PWR I/O 0 BasicMicro.com (c) 00 S POT LCD Button Button Button Button Analog R R Contrast RESET 0 0 AX0 USB Access The on board USB can be used in your circuit if using the RS (DB) connector to program the ATOM module. TXD, RXD and RTS are available on J. Using male to female jumpers, which are included in most Basic Micro development kits J USB side pins, and can be jumpered to the solderless bread board area. RS The on board RS (DB) connector is hard wired to the ATOM modules, SOUT and ATN pins. You must remove any cables connected to the DB connector when using the USB to program the ATOM module.

5 Lab Board Demo The LCD is prewired for easy setup. Control lines (RS, E and R/W) are tied to. The LCD is setup in bit mode. Data lines (D DB) are tied to. The demo program will print Hello World to the LCD screen. You can adjust the potentiometer at R and the analog value will display on the screen. Pressing the tactile switche will illuminate a LED. Wire the Lab Board as shown below. USB U SOUT J C ATN C L R POWER PIN > U Basic Micro Technology at work C BasicMicro.com (c) 00 Basic Micro BasicATOM Lab Board RevD U SPK SERVO PWR LCD AX0 Button Button Button Button Analog R R Contrast RESET 0 0 Servo Connectors PWR I/O 0 S POT

6 BasicATOM 0 Demo Coding for each module is slightly different and demo programs are provided for each module with comments. Wire the Lab Board as shown with a BasicATOM 0 installed. You can download code from download section of the Basicmicro.com website. ;%CONFIG% BASICATOM0 $d00 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 $0 ;Atom : are on LabBoard AX0: ;Wiring ; to POT ;AX0 to led ; to led ; to led ; to led ;p to button ;p to button ;p0 to buzzer/speaker ;p to button ;p to button ;Setup LCD lcdinit p0\p\p,outb lcdwrite p0\p\p,outb,[clearlcd,homelcd,scr,twoline, Hello World ] ;Set pins to known state low AX0 low p low p low p high p ;Setup bit variable temp var long cnt var long cnt=0 ;Start program main loop main ;Read analog pin and display value to LCD cnt=cnt+ adin,temp lcdwrite p0\p\p,outb,[scrram+0,dec temp\] ;Send analog reading to terminal window set to 00 baud serout S_OUT,i00,[dec temp,] ;Copy state of button to LED on/off out=in ; is AX0 out=in out=in out=in ; If button is pressed make sound with buzzer out=in if(in)then low p0 else high p0 endif ; Return to main loop goto main

7 BasicATOM Pro Demo The following code is setup to run with the BasicATOM Pro M. You can download this code from the Basicmicro.com website. ;AtomPro: : are on AX0: of the Lab Board ;Wiring ;/ to POT ;/AX0 to ; to ; to ; to ; to Button ; to Button ;0 to Buzzer/Speaker ; to Button ; to Button ;Setup LCD lcdinit p0\p\p\p\p\p,p lcdwrite p0\p\p\p\p\p,p,[lcdclear,lcdhome,scr,twoline, Hello World ] ;Set pins to known state low p low p low p low p high p ;Setup bit variable temp var long cnt var long cnt=0 ;Start main program loop main ;Read analog pin and display value to LCD cnt=cnt+ adin p,temp lcdwrite p0\p\p\p\p\p,p,[scrram+0,dec temp\] ;Send analog reading to terminal window set to 00 baud serout S_OUT,i00,[dec temp,] ;Copy state of button to LED on/off out=in out=in out=in out=in ; If button is pressed stop speaker sound ;hpwm command adjust speaker frequency based on ;value of POT out=in if(in)then hpwm p0,temp*,temp* else hpwm p0,0000,0 endif ; Return to main loop goto main

8 Driver Installation You can download the FTDI customized driver from During installation you will be installing parts. One is the device and the second is the port its self. You are required to click Contiune Anyway during both installations.

9 Electrical Characteristics Characteristic Rating Min Max Input VDC Current Draw ma I/O Voltages VDC 0 Tempature Range C 0 +

10 LCD Display Circuit USB Serial Circuit RS DB Connector Power Circuit A LCD Tianma x TMYBC U J A L IO TXD 0 J J R Ferrite Bead RXD SOUT x LCD Module.K VBUS RTS# ATN DCD VDD VDD D USBDM CTS# RX SOUT GND USB ON D+ USBDP DTR# TX GND DSR# DTR ATN VDD 0 SHELL NC DCD# S SHELL RESET# RI# DSR UBS RTS J OFF ON NC CBUS0 R OSCI CBUS CTS MC0T.K OSCO CBUS RING TEST CBUS Vin +V Q DB.MM GND CBUS BCB + + GND R GND VOUT C R C C 0 AGND 00uf D 0K R C.uf 0uf POWER 0K FTRL.uf B BasicATOM Socket BasicATOM Pro ONE Socket Servo Connectors Peripheral Header Tactile Buttons LEDs B U SPWR 0 SOUT S_OUT S_IN J ATN ATN RES RES U Button D VDD VDD R0 R NC J SERVO PWR 0K 0 0 Button J J J R D SOUT 0K R VDD 0 Button 0 0 ATN R 0 0K D Button R 0 AX0 R 0 0 S 0K 0 POT D 0 R AtomPro ONE Peripherals C Atom0IC C C.uf I/O SPWR PWR D D Title Size B Number Revision Date: //00 Sheet of File: E:\PCBDesigns\..\AtomLabBoardRevD.SchDoc Drawn By: GND J J J0 J J S 0 Solderless Board SPK Buzzer RES RESET AX0 POT 0 VDD Vo RS R/W E DB0 D D D D DB DB DB LED+ LED I/O Header Power Header PCB Mounts Solderless Bread Board Buzzer Potentiometer Reset Button S R 0K POT J Power Header J I/O Header BasicATOM Lab Board RevB (c) 00 Dale Kubin

11 Warranty Basic Micro warranties its products against defects in material and workmanship for a period of 0 days. If a defect is discovered, Basic Micro will, at our discretion repair, replace, or refund the purchase price of the product in question. Contact us at support@basicmicro.com. No returns will be accepted without the proper authorization. Copyrights and Trademarks Copyright 00 by Basic Micro, Inc. All rights reserved. PICmicro is a trademark of Microchip Technology, Inc. The Basic Atom and Basic Micro are registered trademarks of Basic Micro Inc. Other trademarks mentioned are registered trademarks of their respective holders. Disclaimer Basic Micro cannot be held responsible for any incidental, or consequential damages resulting from use of products manufactured or sold by Basic Micro or its distributors. No products from Basic Micro should be used in any medical devices and/or medical situations. No product should be used in a life support situation. Contacts sales@basicmicro.com Tech support: support@basicmicro.com Web: Discussion List A web based discussion board is maintained at Technical Support Technical support is made available by sending an to support@basicmicro.com. All will be answered within hours. All general syntax and programming questions, unless deemed to be a software issue, will be referred to the online discussion forums.

BasicATOM Lab Board Data Sheet

BasicATOM Lab Board Data Sheet Feature Overview: Includes x LCD Display Solderless Prototyping Board.mm Power Connector USB Connector Using FTDI Sockets for all BasicATOM and BasicATOM Pro Modules Power LED LED Indicator Lights Tactile

More information

Ready DIP28 PIC. with. socket

Ready DIP28 PIC. with. socket Ready for PIC with DIP28 socket Best solution for fast and simple development of applications using 28-pin PIC MCUs. Due to the special white plastic casing the Ready for PIC board can be quickly turned

More information

user's guide to Ready for PIC BOX edition Best solution for fast and simple development of applications using 28- and 40-pin PIC devices.

user's guide to Ready for PIC BOX edition Best solution for fast and simple development of applications using 28- and 40-pin PIC devices. user's guide to Ready for PIC BOX edition Best solution for fast and simple development of applications using 28- and 40-pin PIC devices. TO OUR VALUED CUSTOMERS I want to express my thanks to you for

More information

Professional Development Board (#28138)

Professional Development Board (#28138) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Office: () - Fax: () -00 Sales: () -0 Tech Support: () - Professional Development Board (#) The Parallax Professional Development

More information

Board Of Education, Revision C (28150)

Board Of Education, Revision C (28150) 599 Menlo Drive, Suite 00 Rocklin, California 95765, USA Office: (96) 624-8333 Fax: (96) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Board Of Education,

More information

STEVAL-ISB038V1T. 1 W wearable wireless power transmitter based on STWBC-WA. Description. Features

STEVAL-ISB038V1T. 1 W wearable wireless power transmitter based on STWBC-WA. Description. Features STEVAL-ISB08VT W wearable wireless power transmitter based on STWBC-WA Data brief USB V input Foreign Object Detection (FOD) optional Graphical interface for monitoring behavior Total reference design

More information

GREEN HERON ENGINEERING LLC

GREEN HERON ENGINEERING LLC GREEN HERON ENGINEERING LLC RADIO BOSS USB USER GUIDE DOCUMENT REVISION: 1.1 A UGUST 8, 2013 G R E E N H E R O N E N G I N E E R I N G L L C RADIO AND TELEVISION INTERFERENCE Green Heron Engineering LLC

More information

MY-ZB010C UART to ZigBee Module

MY-ZB010C UART to ZigBee Module MY-ZB010C UART to ZigBee Module Product Overview The MY-ZB010C is an industrial UART to ZigBee module designed by MYIR for applications which require low cost, low power, high reliability and far distance

More information

Integrity Instruments

Integrity Instruments Integrity Instruments XP-A/I User Manual Integrity Instruments P.O. Box Order Phone 00-0-00 Pine River Minnesota Fax Phone -- USA Tech Phone --0 http://www.integrityusa.com XP-A ISOLATED XP-I RS- to RS-

More information

Rochester Institute of Technology

Rochester Institute of Technology Exploring the Fox-2 Maximum Power Point Tracking System Mark Spencer, WA8SME, mspencer@arrl.org ARRL Education and Technology Program Director Rochester Institute of Technology (R.I.T.) engineering students

More information

ESP32 Utility Driver

ESP32 Utility Driver Annotated Schematics Revision. Introduction. This document This document provide info about needed to program and operate the device and is intended for developers and more advanced users.. Content Introduction....

More information

Fanuc Serial (RS232) Communications Information

Fanuc Serial (RS232) Communications Information Memex Automation Inc. 777 Walkers Line, Burlington, Ontario Canada L7N 2G1 Fanuc Serial (RS232) Communications Information Contents Signal Description Fanuc Serial Cable Information Timing Chart When The

More information

TO OUR VALUED CUSTOMERS

TO OUR VALUED CUSTOMERS SmartGLCD 240x128 TO OUR VALUED CUSTOMERS I want to express my thanks to you for being interested in our products and for having confidence in MikroElektronika. The primary aim of our company is to design

More information

B Robo Claw 2 Channel 25A Motor Controller Data Sheet

B Robo Claw 2 Channel 25A Motor Controller Data Sheet B0098 - Robo Claw 2 Channel 25A Motor Controller Feature Overview: 2 Channel at 25A, Peak 30A Hobby RC Radio Compatible Serial Mode TTL Input Analog Mode 2 Channel Quadrature Decoding Thermal Protection

More information

A50/A51/A60. June 2008 (4th Edition) All Rights Reserved

A50/A51/A60. June 2008 (4th Edition) All Rights Reserved A50/A51/A60 June 2008 (4th Edition) All Rights Reserved Part I - A50/A51 RS-232 to RS-422/RS-485 Converter A50/A51 RS-232 to RS-422/RS-485 Bidirectional Converter Part II - A60 RS-232 Surge Protection

More information

ADC Relay Adapter USB V 8.0 for Raspberry PI

ADC Relay Adapter USB V 8.0 for Raspberry PI ADC Relay Adapter USB V 8.0 for Raspberry PI INDUSTRIAL BERRY www.industrialberry.com May 203 Contents License 2 Introduction 3 3 Hardware implementation 5 4 Software implementation 4.0. An example with

More information

AMERITRON RCS-12 AUTOMATIC ANTENNA SWITCH

AMERITRON RCS-12 AUTOMATIC ANTENNA SWITCH AMERITRON RCS-12 AUTOMATIC ANTENNA SWITCH INSTRUCTION MANUAL PLEASE READ THIS MANUAL BEFORE OPERATING THIS EQUIPMENT! 116 Willow Road Starkville, MS 39759 USA 662-323-8211 Version 3B Printed in U.S.A.

More information

Hardware Guide. Control Made Simple. Model 401A Signal Generator

Hardware Guide. Control Made Simple. Model 401A Signal Generator Control Made Simple Model 401A Signal Generator Hardware Guide ON OFF LIMIT 1 2 3 4 RXD TXD POWER West Coast Office 1263 El Camino Real Menlo Park, CA 94025 Phone (650) 853-1444 Fax (650) 853-1405 www.flashcutcnc.com

More information

CONTROL MICROSYSTEMS SCADAWave Radio Transceiver. Hardware Manual

CONTROL MICROSYSTEMS SCADAWave Radio Transceiver. Hardware Manual 5908 SCADAWave Radio Transceiver Hardware Manual CONTROL MICROSYSTEMS SCADA products... for the distance 48 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical

More information

250 Series Master Development System User's Guide

250 Series Master Development System User's Guide 50 Series Master Development System User's Guide ! Warning: Some customers may want Linx radio frequency ( RF ) products to control machinery or devices remotely, including machinery or devices that can

More information

SmartGLCD 240x128. user's guide to

SmartGLCD 240x128. user's guide to user's guide to SmartGLCD 240x128 Smart GLCD 240x128 represents development tool and final product specially designed for graphical applications which use PIC microcontroller PIC18F8722 TO OUR VALUED CUSTOMERS

More information

RS232-B1 User Manual V1.2 05/10/2017

RS232-B1 User Manual V1.2 05/10/2017 RS232-B1 User Manual V1.2 05/10/2017 Table of Contents 1. Introduction...2 1.1 Device Overview... 2 1.2 System Overview... 3 1.3 Features... 3 1.4 Connectors... 4 1.4.1 RS232 Connectors (J1, J2)... 4 1.4.2

More information

USER'S MANUAL. Model : K

USER'S MANUAL. Model : K USER'S MANUAL Model : 2000-64K TM GINA MODEL 2000-64K Overview GINA Model 2000-64K is a stand-alone, high frequency data transceiver using spread spectrum technology. GINA 2000-64K capabilities include

More information

Concept of Serial Communication

Concept of Serial Communication Concept of Serial Communication Agenda Serial v.s. Parallel Simplex, Half Duplex, Full Duplex Communication RS-485 Advantage over RS-232 Serial v.s. Parallel Application: How to Measure the temperature

More information

ZKit-51-RD2, 8051 Development Kit

ZKit-51-RD2, 8051 Development Kit ZKit-51-RD2, 8051 Development Kit User Manual 1.1, June 2011 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

B RoboClaw 2 Channel 30A Motor Controller Data Sheet

B RoboClaw 2 Channel 30A Motor Controller Data Sheet B0098 - RoboClaw 2 Channel 30A Motor Controller (c) 2010 BasicMicro. All Rights Reserved. Feature Overview: 2 Channel at 30Amp, Peak 60Amp Battery Elimination Circuit (BEC) Switching Mode BEC Hobby RC

More information

CMU232 User Manual Last Revised October 21, 2002

CMU232 User Manual Last Revised October 21, 2002 CMU232 User Manual Last Revised October 21, 2002 Overview CMU232 is a new low-cost, low-power serial smart switch for serial data communications. It is intended for use by hobbyists to control multiple

More information

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1 HAW-Arduino Sensors and Arduino 14.10.2010 F. Schubert HAW - Arduino 1 Content of the USB-Stick PDF-File of this script Arduino-software Source-codes Helpful links 14.10.2010 HAW - Arduino 2 Report for

More information

DMP Electronics Inc Robotic Division

DMP Electronics Inc Robotic Division DMP Electronics Inc Robotic Division Jul 2009 Agenda DMP SoC Family RB-100 Overview Hardware Introduction Accessory Support List Application Q & A DMP s ssoc Family Jul. 1998 Feb. 2007 386 40MHz 486 300MHz

More information

USER MANUAL MODEL Parallel to Serial/ Serial to Parallel Interface Converter

USER MANUAL MODEL Parallel to Serial/ Serial to Parallel Interface Converter USER MANUAL MODEL 2029 Parallel to Serial/ Serial to Parallel Interface Converter C E R T I F I E D An ISO-9001 Certified Company Part #07M2029-B, Rev. C Doc. #102011UB Revised 6/16/09 SALES OFFICE (301)

More information

Universal Converter Covers All the Bases- RS-232 to 4-wire RS-422, 2-wire or 4-wire RS-485

Universal Converter Covers All the Bases- RS-232 to 4-wire RS-422, 2-wire or 4-wire RS-485 4WSD9R0712-1/4 Model 4WSD9R Universal Converter Covers All the Bases- RS-232 to 4-wire RS-422, 2-wire or 4-wire RS-485 The 4WSD9R Universal Converter is a port-powered or externally powered two-channel

More information

The Guitar Chord Learning System

The Guitar Chord Learning System The Guitar Chord Learning System Calvin A. Sessions Hardware Description April 19, 2005 Western Washington University Electronics Engineering Technology ETEC 474, Professor Morton INTRODUCTION The Guitar

More information

2W UHF MHz Radio Transceiver

2W UHF MHz Radio Transceiver 2W UHF410-470 MHz Radio Transceiver Specification Copyright Javad Navigation Systems, Inc. February, 2006 All contents in this document are copyrighted by JNS. All rights reserved. The information contained

More information

TT Series Master Development System User's Guide

TT Series Master Development System User's Guide TT Series Master Development System User's Guide Table of Contents ^ Introduction ^ Ordering Information ^ TT Series Transceiver Carrier Board ^ TT Series Transceiver Carrier Board Objects ^ TT Series

More information

Z-5652 plus Series. 2D Image Hands-Free Scanner

Z-5652 plus Series. 2D Image Hands-Free Scanner Z-5652 plus Series 1 2D Image Hands-Free Scanner Revision History Changes to the original manual are listed below: Version Date Description of Version 1.0 10/02/2017 Initial release 2D Image Scan Module

More information

DEMO MANUAL DC1182A LTC2981: I 2 C Programmable Precision Reference with EEPROM DESCRIPTION

DEMO MANUAL DC1182A LTC2981: I 2 C Programmable Precision Reference with EEPROM DESCRIPTION DESCRIPTION Demonstration circuit 8A features the LTC 98, a precision reference that can be programmed through an easy-to-use I C interface. While external pins or internal register bits select the central

More information

Lecture #3 RS232 & 485 protocols

Lecture #3 RS232 & 485 protocols SPRING 2015 Integrated Technical Education Cluster At AlAmeeria E-626-A Data Communication and Industrial Networks (DC-IN) Lecture #3 RS232 & 485 protocols Instructor: Dr. Ahmad El-Banna 1 Agenda What

More information

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU

The Skiidometer. Hardware Description By: Adam Lee ; Etec474; Prof. Morton; WWU The Skiidometer Hardware Description By: Adam Lee 04.26.2003; Etec474; Prof. Morton; WWU General Description The Skiidometer is a portable meter which serves as a digital companion on the ski slopes. By

More information

Cable and Port Specifications

Cable and Port Specifications APPENDIX D This appendix includes the following information: Cables and Adapters Provided, page D-1 Console Port, page D-2 COM1 Port, page D-3 MGMT 10/100 Ethernet Port, page D-5 SFP Transceiver Specifications,

More information

LCC-10 Product manual

LCC-10 Product manual LCC-10 Product manual Rev 1.0 Jan 2011 LCC-10 Product manual Copyright and trademarks Copyright 2010 INGENIA-CAT, S.L. / SMAC Corporation Scope This document applies to i116 motion controller in its hardware

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

DigiPoints Volume 1. Student Workbook. Module 2 Modem Overview

DigiPoints Volume 1. Student Workbook. Module 2 Modem Overview Modem Overview Page 2.1 DigiPoints Volume 1 Module 2 Modem Overview Summary One of the potential advantages the cable telecommunications industry has is the ability to carry data signals at speeds significantly

More information

ACT-IR220Li/220LN IrDA Serial Port Adapter

ACT-IR220Li/220LN IrDA Serial Port Adapter ACT-IR220Li/220LN IrDA Serial Port Adapter Product Specification Summary ACTiSYS Corp. 48511 Warm Springs Blvd, Suite 206 Fremont, CA 94539, USA TEL: (510) 490-8024, FAX: (510) 623-7268 E-Mail: irda-support@actisys.com

More information

PAN1760A. Design Guide. Wireless Modules. Bluetooth Low Energy Module. Rev.1.2

PAN1760A. Design Guide. Wireless Modules. Bluetooth Low Energy Module. Rev.1.2 PAN76A Bluetooth Low Energy Module Design Guide Rev.. Wireless Modules PAN76A Design Guide By purchase of any of the products described in this document the customer accepts the document's validity and

More information

PCAN-MicroMod Evaluation Test and Development Environment for the PCAN-MicroMod. User Manual. Document version ( )

PCAN-MicroMod Evaluation Test and Development Environment for the PCAN-MicroMod. User Manual. Document version ( ) PCAN-MicroMod Evaluation Test and Development Environment for the PCAN-MicroMod User Manual Document version.0. (0-0-) Relevant products Product Name Part number Model PCAN-MicroMod Evaluation Board IPEH-000

More information

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K.

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Roberts Page 1 See Appendix A, for Licensing Attribution information

More information

TT Series Master Development System User's Guide

TT Series Master Development System User's Guide TT Series Master Development System User's Guide ! Warning: Some customers may want Linx radio frequency ( RF ) products to control machinery or devices remotely, including machinery or devices that can

More information

M7 Over-The-Air Protocol. Overview. Technical Brief AN187 Rev A1

M7 Over-The-Air Protocol. Overview. Technical Brief AN187 Rev A1 Technical Brief AN187 Rev A1 M7 Over-The-Air Protocol By John Sonnenberg Raveon Technologies Corp Overview The M7 GX series of GPS transponders may be directly connected to a Garmin GPS 152H navigation

More information

ACT-IR220L/LE IrDA Serial Port Adapter

ACT-IR220L/LE IrDA Serial Port Adapter ACT-IR220L/LE IrDA Serial Port Adapter Product Specification Summary ACTiSYS Corp. 48511 Warm Springs Blvd, Suite 206 Fremont, CA 94539, USA TEL: (510) 490-8024, FAX: (510) 623-7268 E-Mail: irda-support@actisys.com

More information

HB-25 Motor Controller (#29144)

HB-25 Motor Controller (#29144) 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

MAX11300PMB1 Peripheral Module and Munich (USB2PMB1) Adapter Board Quick Start Guide

MAX11300PMB1 Peripheral Module and Munich (USB2PMB1) Adapter Board Quick Start Guide MAX11300PMB1 Peripheral Module and Munich (USB2PMB1) Adapter Board Quick Start Guide Rev 0; 7/14 For pricing, delivery, and ordering information, please contact Maxim Direct at 1-888-629-4642, or visit

More information

Tel: Fax: OMESH Networks Inc. 2011

Tel: Fax: OMESH Networks Inc. 2011 Section 1: Purpose OPM15 is a large-scale cognitive wireless networking module, providing great flexibility for a wide range of applications. Powered by the OPM optimized radio design and networking stack,

More information

USB-B1 User Manual V1.1

USB-B1 User Manual V1.1 USB-B1 User Manual V1.1 Table of Contents 1 Introduction... 2 1.1 Device Overview... 2 1.2 System Overview... 3 1.3 Connectors... 4 1.3.1 USB Connector J11... 4 1.3.2 External Antenna Connector (J10)...

More information

16 Bit Micro Experimenter Assembly and Check out Instructions

16 Bit Micro Experimenter Assembly and Check out Instructions 16 Bit Micro Experimenter Assembly and Check out Instructions The kit you purchased that includes PCB, schematic, complete parts list and these assembly instructions. A top picture of the complete assembly

More information

Tarocco Closed Loop Motor Controller

Tarocco Closed Loop Motor Controller Contents Safety Information... 3 Overview... 4 Features... 4 SoC for Closed Loop Control... 4 Gate Driver... 5 MOSFETs in H Bridge Configuration... 5 Device Characteristics... 6 Installation... 7 Motor

More information

MDR24x Wireless 2.4GHz Modem

MDR24x Wireless 2.4GHz Modem MDR24x Wireless 2.4GHz Modem User s Manual Version 1.1 1000 Park Drive Lawrence, PA 15055-1018 Website: www.blackbox.com Email: info@blackbox.com Order Toll Free in the US: Call 877-877-BBOX (Outside the

More information

MiniProg Users Guide and Example Projects

MiniProg Users Guide and Example Projects MiniProg Users Guide and Example Projects Cypress MicroSystems, Inc. 2700 162 nd Street SW, Building D Lynnwood, WA 98037 Phone: 800.669.0557 Fax: 425.787.4641 1 TABLE OF CONTENTS Introduction to MiniProg...

More information

About LC Meter This is one of the most accurate and simplest LC inductance / capacitance Meters that one can find, yet one that you can easily build y

About LC Meter This is one of the most accurate and simplest LC inductance / capacitance Meters that one can find, yet one that you can easily build y Home Electronic Store Electronic Blog Electronic Schematics Tutorials Downloads Lin Very Accurate LC Meter based on PIC16F84A IC. LC Meter Part's List: 2x 1K 2x 6.8K 1x 47K 3x 100K 1x 10K POT 2x 10pF 1x

More information

Motor Control Development Kit

Motor Control Development Kit User s Manual, V 1.0, June 2003 Motor Control Development Kit A reference design for low voltage 3-phase AC induction and brushless DC motor control. Microcontrollers Never stop thinking. Revision History:2003-06

More information

Universal RS232/CMOS to RS422/RS485 Converter

Universal RS232/CMOS to RS422/RS485 Converter TOSHIBA INTERNATIONAL CORPORATION Universal RS232/CMOS to RS422/RS485 Converter Rev No.: 2 Page No.: 1 RS232/CMOS to RS422/RS485 Converter converts RS232/CMOS lines to balanced RS422 or RS485 signals.

More information

ECE 4510/5530 Microcontroller Applications Week 6 Lab 5

ECE 4510/5530 Microcontroller Applications Week 6 Lab 5 Microcontroller Applications Week 6 Lab 5 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences Lab 5 Element Hardware

More information

Breadboard Arduino Compatible Assembly Guide

Breadboard Arduino Compatible Assembly Guide (BBAC) breadboard arduino compatible Breadboard Arduino Compatible Assembly Guide (BBAC) A Few Words ABOUT THIS KIT The overall goal of this kit is fun. Beyond this, the aim is to get you comfortable using

More information

SC16A SERVO CONTROLLER

SC16A SERVO CONTROLLER SC16A SERVO CONTROLLER User s Manual V2.0 September 2008 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded by

More information

1 What s in the shipping package?

1 What s in the shipping package? SST 900B 900 MHz RS 232/RS 485 Wireless Modem Quick Start Guide 1 What s in the shipping package? SST-900B Wireless Modem CA-0910 Quick Start CD 3dBi 900M Hz Antenna Guide 2 External switch introduction

More information

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL Revision 1.0.3 WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL RADIOTRONIX, INC. WI.232FHSS-25-FCC-R/ RK-WI.232FHSS-25-FCC-R USER S MANUAL Radiotronix 905 Messenger Lane Moore, Oklahoma 73160

More information

RigExpert TI-7 USB Transceiver Interface User s manual

RigExpert TI-7 USB Transceiver Interface User s manual RigExpert TI-7 USB Transceiver Interface User s manual Please read this manual before attempting to use the RigExpert TI-7 device. - - 2 - Table of contents 1. What is a RigExpert TI-7?... 4 2. Specifications...

More information

This section of the manual will document the Ad-Maestro s control ports, COMM Ports and their settings respectively.

This section of the manual will document the Ad-Maestro s control ports, COMM Ports and their settings respectively. This section of the manual will document the Ad-Maestro s control ports, COMM Ports and their settings respectively. Parallel - The Parallel port provides a control interface with video devices utilizing

More information

Parallax Servo Controller (#28023) Rev B 16-Channel Servo Control with Ramping

Parallax Servo Controller (#28023) Rev B 16-Channel Servo Control with Ramping 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 6248333 Fax: (916) 6248003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.parallax.com/sic

More information

RM24100D. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1.

RM24100D. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1. RM24100D 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE 802.15.4 compliant) Operating Manual English 1.03 Introduction The RM24100D radio modem acts as a wireless serial cable replacement and

More information

TO OUR VALUED CUSTOMERS

TO OUR VALUED CUSTOMERS MINI-32 The whole PIC32 development board fitted in DIP26 form factor, containing powerful PIC32MX534F064H microcontroller. It s pin compatible with PIC16F887 and PIC18(L)F45K20 microcontrollers! MINI

More information

2-Axis High Speed Interpolation/Normal Motion Controller

2-Axis High Speed Interpolation/Normal Motion Controller -Axis High Speed Interpolation/Normal Motion Controller -Axis high speed interpolation/normal motion Features Independent -Axis controlling with high operating speed of max. Mpps Linear/Circular interpolation

More information

Simple Servo USER Instructions

Simple Servo USER Instructions Simple Servo USER Instructions Version 1V2 Copyright 2003-2007 Active Robots Limited 10A New Rock Ind. Est., Newrock, Chilcompton, Somerset BA3 4JE UK Tel: +44(0)1761 239 267 Fax: +44(0)176 123 3162 www.active-robots.com

More information

User s Manual. 585 Charest blvd E 7th floor Québec City, Quebec G1K 3J2 CANADA. Tel. (418) Fax (418)

User s Manual. 585 Charest blvd E 7th floor Québec City, Quebec G1K 3J2 CANADA. Tel. (418) Fax (418) User s Manual 585 Charest blvd E 7th floor Québec City, Quebec G1K 3J2 CANADA Tel. (418) 681-8022 Fax (418) 681-8015 www.domosys.com February 2002 Copyright 2002, Domosys Corporation. All rights reserved.

More information

CL4424. Industrial 2.4GHz ConnexLink. User s Manual Version 1.1

CL4424. Industrial 2.4GHz ConnexLink. User s Manual Version 1.1 CL4424 Industrial 2.4GHz ConnexLink User s Manual Version 1.1 11160 THOMPSON AVENUE LENEXA, KS 66215 (800) 492-2320 www.aerocomm.com sales@aerocomm.com Document Information Copyright Information Copyright

More information

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

APDS-9960 RGB and Gesture Sensor Hookup Guide

APDS-9960 RGB and Gesture Sensor Hookup Guide Page 1 of 12 APDS-9960 RGB and Gesture Sensor Hookup Guide Introduction Touchless gestures are the new frontier in the world of human-machine interfaces. By swiping your hand over a sensor, you can control

More information

Series SPPM2 Graphical User Interface Panel Meter. Specifications - Installation and Operating Instructions MINI USB PORT

Series SPPM2 Graphical User Interface Panel Meter. Specifications - Installation and Operating Instructions MINI USB PORT Series SPPM Graphical User Interface Panel Meter Bulletin PCSPPM Specifications Installation and Operating Instructions / [9.0] 9/ [9.] / [9.9] / [.9] / [.] 9/ [9.] JTAG [FOR INTERNAL USE] ALARMS, SERIAL

More information

DEVKIT-S12ZVC QUICK START GUIDE (QSG)

DEVKIT-S12ZVC QUICK START GUIDE (QSG) DEVKIT-S12ZVC QUICK START GUIDE (QSG) ULTRA-RELIABLE MCUS FOR INDUSTRIAL AND AUTOMOTIVE EXTERNAL USE Get to know the DEVKIT-S12ZVC The DEVKIT-S12ZVC is an ultra-low-cost development platform for S12 Microcontrollers.

More information

CL4490 HARDWARE INTEGRATION GUIDE VERSION 1.0. FCC Notice.

CL4490 HARDWARE INTEGRATION GUIDE VERSION 1.0. FCC Notice. CL4490 HARDWARE INTEGRATION GUIDE VERSION 1.0 wireless.support@lairdtech.com FCC Notice WARNING: This device complies with Part 15 of the FCC Rules. Operation is subject to the following two conditions:

More information

InnobotTM User s Manual

InnobotTM User s Manual InnobotTM User s Manual Document Rev. 2.0 Apr. 15, 2014 Trademark Innovati,, and BASIC Commander are registered trademarks of Innovati, Inc. InnoBASIC, cmdbus, Innobot and Explore Board are trademarks

More information

P G A Digital Stimulator Instruction Manual

P G A Digital Stimulator Instruction Manual P G 4 0 0 0 A Digital Stimulator Instruction Manual 2005 Cygnus Technology, Inc. Technology, Inc. P.O.Box 219 Delaware Water Gap, PA 18327 Tel: (570) 424-5701 Fax: (570) 424-5630 Email: sales@cygnustech.com

More information

PROMAG RWM600A. ISO/IEC15693 Advanced Reader Module. Overview. Features. Application. Specifications. Application Circuit

PROMAG RWM600A. ISO/IEC15693 Advanced Reader Module. Overview. Features. Application. Specifications. Application Circuit Overview ISO569 reader module works with smart label, based on transponders with an operating frequency of.56mhz (e.g. I-CODE SL, Tag-It HF-I etc.), based on TI-RFID technology. Depending on the size of

More information

Interface Description Peak MTT

Interface Description Peak MTT Y-SC-06.60 4.0 2011-03-08 Håkan Sandström Interface Description Peak MTT Author: Håkan Sandström Approved by: Joakim Andersson Distribution List: form-04.05-1.1 2005-01-25 [STL 6] Page 1 (13) Contents

More information

BAND AIDE AUTOMATIC BAND DECODER

BAND AIDE AUTOMATIC BAND DECODER BAND AIDE AUTOMATIC BAND DECODER 1. Features Overview The Top Ten Devices Band Aide is an accessory that attaches to your radio (or computer), decodes the band data provided by the radio, and provides

More information

DESCRIPTION DOCUMENT FOR WIFI / BT HEAVY DUTY RELAY BOARD HARDWARE REVISION 0.1

DESCRIPTION DOCUMENT FOR WIFI / BT HEAVY DUTY RELAY BOARD HARDWARE REVISION 0.1 DESCRIPTION DOCUMENT FOR WIFI / BT HEAVY DUTY RELAY BOARD HARDWARE REVISION 0.1 Department Name Signature Date Author Reviewer Approver Revision History Rev Description of Change A Initial Release Effective

More information

PLXDigi (v1.00) Instruction manual Configuration software manual

PLXDigi (v1.00) Instruction manual Configuration software manual PLXDigi (v1.00) APRS STANDALONE DIGIPEATER MULTIPATH APRS DECODING ALGORITHM WEATHER STATION SUPPORT EXTERNAL TELEMETRY MODULE SUPPORT INPUT VOLTAGE MEASUREMENT SERIAL DEBUG INTERFACE FOR ADMINISTRATION

More information

RFID. LF Training. Installation and Set-up. J.A.G 7 March, 2008 Texas Instruments Proprietary Information 1

RFID. LF Training. Installation and Set-up. J.A.G 7 March, 2008 Texas Instruments Proprietary Information 1 RFID LF Training Installation and Set-up J.A.G 7 March, 2008 Texas Instruments Proprietary Information 1 S2000 Readers Radio Frequency Module (RFM) Control Module (CTL) Series 2000 Reader 3/28/2008 TI

More information

RM868500D. Introduction. Features. 868MHz 500mW RS232 / RS485 / RS422 Radio Modem. Operating Manual English 1.01

RM868500D. Introduction. Features. 868MHz 500mW RS232 / RS485 / RS422 Radio Modem. Operating Manual English 1.01 RM868500D 868MHz 500mW RS232 / RS485 / RS422 Radio Modem Operating Manual English 1.01 Introduction The RM868500D radio modem acts as a wireless serial cable replacement and can wirelessly connect various

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

ZKit-51-V664, 8051 Development Kit

ZKit-51-V664, 8051 Development Kit ZKit-51-V664, 8051 Development Kit User Manual 2.0, Oct 2013 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

8 Channel, DMX to 0 10 volt, Decoder board

8 Channel, DMX to 0 10 volt, Decoder board 8 Channel, DMX to 0 10 volt, Decoder board Allows DMX512 digital protocol to control analog devices that require a 0-10VDC control voltage. Upgrade 0-10 volt analog dimmers, use with motor controllers

More information

DESCRIPTION DOCUMENT FOR WIFI/BT QUAD RELAY BOARD HARDWARE REVISION 0.1

DESCRIPTION DOCUMENT FOR WIFI/BT QUAD RELAY BOARD HARDWARE REVISION 0.1 DOCUMENT NAME: DESIGN DESCRIPTION, WIFI /BT QUAD RELAY BOARD. DESCRIPTION DOCUMENT FOR WIFI/BT QUAD RELAY BOARD HARDWARE REVISION 0.1 Department Name Signature Date Author Reviewer Approver Revision History

More information

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions.

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions. BBB Rover Cape TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential

More information

Toradex Colibri Development Board

Toradex Colibri Development Board Toradex Colibri Development Board TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special

More information

X3M. Multi-Axis Absolute MEMS Inclinometer Page 1 of 13. Description. Software. Mechanical Drawing. Features

X3M. Multi-Axis Absolute MEMS Inclinometer Page 1 of 13. Description. Software. Mechanical Drawing. Features Page 1 of 13 Description The X3M is no longer available for purchase. The X3M is an absolute inclinometer utilizing MEMS (micro electro-mechanical systems) technology to sense tilt angles over a full 360

More information

TECHNICAL DATASHEET #TDAX QUAD VALVE CONTROLLER P/N: AX SERIES

TECHNICAL DATASHEET #TDAX QUAD VALVE CONTROLLER P/N: AX SERIES TECHNICAL DATASHEET #TDAX020500 QUAD VALVE CONTROLLER P/N: AX020500 SERIES Multiple Digital, Analog or PWM Command Inputs 4 Independent Proportional Outputs and 1 On/Off Output Standard Open Loop Control

More information

HumRC TM Series Master Development System User's Guide

HumRC TM Series Master Development System User's Guide HumRC TM Series Master Development System User's Guide ! Warning: Some customers may want Linx radio frequency ( RF ) products to control machinery or devices remotely, including machinery or devices that

More information

MINI-32. development board for PIC32MZ MINI ARM. PIC32 development board fitted in a DIP40 form factor, containing a powerful microcontroller.

MINI-32. development board for PIC32MZ MINI ARM. PIC32 development board fitted in a DIP40 form factor, containing a powerful microcontroller. MINI-32 development board for PIC32MZ PIC32 development board fitted in a DIP40 form factor, containing a powerful microcontroller. MINI ARM TO OUR VALUED CUSTOMERS I want to express my thanks to you for

More information

7I54 MANUAL Six channel 40V 3A Servo motor drive

7I54 MANUAL Six channel 40V 3A Servo motor drive 7I54 MANUAL Six channel 40V 3A Servo motor drive V1.1 This page intentionally almost blank Table of Contents GENERAL.......................................................... 1 DESCRIPTION.................................................

More information

INSTANT ROBOT SHIELD (AXE408)

INSTANT ROBOT SHIELD (AXE408) INSTANT ROBOT SHIELD (AXE408) 1.0 Introduction Thank you for purchasing this Instant Robot shield. This datasheet is designed to give a brief introduction to how the shield is assembled, used and configured.

More information