Nifty Networking Chips Link Stamps Far and Wide Use an RS-485 transceiver for reliable network comms

Size: px
Start display at page:

Download "Nifty Networking Chips Link Stamps Far and Wide Use an RS-485 transceiver for reliable network comms"

Transcription

1 Column #28, June 1997 by Scott Edwards: Nifty Networking Chips Link Stamps Far and Wide Use an RS-485 transceiver for reliable network comms STAMPS ARE GREAT for bridging the gap between PCs and hardware sensors or controls. The Stamps easily communicate with the PC serial port, and just as easily interface with primitive hardware on its own terms. The obvious next step is to network Stamps together so that a single PC can gather data from Stamps scattered around the house, garden, building, or factory. While Stamps offer some built-in networking capabilities, you re probably pushing your luck if you build a network more than a few dozen feet long. If you want real networking, you want RS-485. This month s column will show how to interface Stamps to an RS-485 transceiver chip for easy and robust network communication. The Nuts and Volts of BASIC Stamps (Volume 1) Page 281

2 What s RS-485? You are probably familiar with RS-232, the electronics industry specification that describes a garden-variety computer serial port used to communicate with modems and other accessories. In RS-232 signaling, a positivevoltage (+5 to +15V) represents a digital 0, and a negative voltage ( 5 to 15V) a 1. Those voltages are specified relative to a signal ground, which must be common to both RS-232 devices. I say both because RS-232 is meant to connect only two devices at a time. According to the specs, maximum cable lengthis 50 feet. RS-232 calls for separate transmit and receive lines, so both ends of an RS-232 connection may send and receive data simultaneously, a capability called full duplex. RS-485 is an alternative standard designed to allow multiple devices (up to 32) to communicate over a single pair or wires up to 4000 feet long. RS-485 signals are not referenced to ground per se, but to the voltage difference between the two wires of the signaling pair. The two wires of the pair are designated A and B; when the voltage on A is greater than the voltage on B, that s a digital 1. When B is greater than A, that s a 0. This differential signaling is nearly immune to noise pickup over long wire runs. The only catch is that the local ground potentials of the RS-485 devices cannot differ by more than ±7 volts. If they do, the system won t work. Since only one pair is used for receive and transmit, the RS-485 devices have to take turns using it. This is called half duplex. If two RS-485 units try to transmit at the same time, the error condition is called bus contention. Making RS-485 work An RS-485 network is like a group of people using walkie-talkies on a single frequency. There are two major limitations: When a unit is listening, it cannot talk; when talking, it can t listen. If two units talk at the same time, neither will be heard correctly. Page 282 The Nuts and Volts of BASIC Stamps (Volume 1)

3 Figure 28.1: Networking demo setup. Given those limitations, it s vital to coordinate units behavior. One of the simplest ways to do this is to appoint one unit master and all other units slaves. No slave unit is permitted to transmit until told to do so by the master unit. This solves the problem of preventing units from transmitting at the same time. It does, however, require the master to check in with all of the slave units periodically for updates. If a slave unit possesses urgent information, it must still wait until called upon by the master before transmitting. An RS-485 demo Figure 28.1 illustrates how I setup a demonstration network using four BS1 controllers connected to LTC1487 RS-485 transceivers. I chose the LTC1487 because it has some virtues beyond the normal RS-485 specs, including capability for up to 256 units on a line, low electromagnetic interference (EMI) from the signaling wires, and various sorts of fool-proofing against static electricity, open inputs and bus contention. It also draws far less current than most comparable devices, just 120mA in receive mode. Hardware. The LTC1487 has separate driver-enable and receiver-enable pins. The driver is enabled by a 1 on pin 3; the receiver by a 0 on pin 2. To conserve Stamp pins, I tied these together so that a 0 means send and a 1 means receive. Why doesn t the 1487 have just a single send/receive pin? It supports two other modes: one in which both the driver and receiver are enabled, allowing a controller to hear its own serial output. The Stamp can t send and receive simultaneously, so this mode is no use to it. The Nuts and Volts of BASIC Stamps (Volume 1) Page 283

4 In the other unused mode, both the driver and receiver are disabled. This amounts to shutting off the LTC1487, reducing its current draw to 1mA. However, the LTC1487 s current draw in receive mode is only 120mA. Unless your application uses battery power and software-controlled shutdown, the pin saved by combining the enable inputs is more valuable than the possible savings in current draw. The 10k resistor to ground prevents the LTC1487 from accidentally getting into transmit mode when the Stamp is disconnected or reset. I also tied the receiver output and driver input lines together. Stamps can send and receive through the same pin, so there s no reason to do otherwise. The 1k resistor in series with the receiver-output prevents damage in the event that the receiver is enabled while the Stamp is trying to transmit data. This would occur only in the event of a bonehead program bug, but a resistor is cheap insurance. A Stamp plus the LTC1487 circuit make up what I m calling a node in the figure. Per the LTC1487 specs, you can have up to 256 nodes along a 2000-foot stretch of twisted-pair wire. The manufacturer s application diagram shows the use of shielded cable, with the shield connected to ground at one end. For shorter runs of wire in electrically quiet surroundings, you may find that shielding is not strictly necessary. You also may find that you can run the full 4000-foot RS-485 cable length if you comply with the 32-node limit. Networking is very much a your-mileage-may-vary kind of business. Figure 28.1 shows the first and last nodes on the wire with 120Ω terminating resistors across A and B. These help prevent reflections and ringing on the network. I m going to duck the difficult job of explaining the theory behind that it is enough to understand this: A properly terminated RS-485 network preserves the nice, crisp on/off waveforms of the serial data. An unterminated or incorrectly terminated network can distort the signals, sometimes to the point of causing data errors. No matter how many nodes are connected to the net, only two of them first and last get terminating resistors. One of the LTC1487 s fool-proofing features (controlled slew rate) makes it less fussy about net termination than other RS-485 devices, but do it right anyway. As I said before, it is not necessary for the nodes to share a common ground. For my demo, I powered the nodes with individual batteries so that they were floating relative to ground. Page 284 The Nuts and Volts of BASIC Stamps (Volume 1)

5 If you re setting up a net in which nodes will be connected to separate grounds, make sure to check for differences in ground potential with an AC voltmeter. If the difference is greater than ±7 volts, you have a problem; the net won t work. A discussion of building electrical wiring and grounding practices is waaay beyond the scope of this column (and beyond my experience as a non-electrician). Suffice to say that you must check and if necessary correct grounding problems before you continue with your net. Software. Listings 28.1 and 28.2 show how I programmed my demo network. Listing 28.1 runs the master; listing 28. runs on each of the slaves, which are identified A, B, and C. The master program puts the LTC1487 into transmit mode and sends the ID of one of the slaves, followed by a number for the slave unit to write to its unused six output pins. The master then waits for the slave to acknowledge receipt of the data by sending back its ID. Because of the way BS1 serial input instructions work, this network is fragile. If a slave unit is turned off, the master will get stuck waiting for acknowledgment. There are two remedies: use a BS2 master and set a serial timeout (Program Listing 28.3), or dedicate an additional Stamp to the job of monitoring the network and resetting the master or providing a substitute response. Note that the listings send data to the slaves in numeric text format (by preceding values with #), rather than as single bytes. If data were sent as bytes, it could accidentally match a different slave s ID, causing that slave to expect further data. By limiting slave IDs to letters and data to numbers, we prevent such conflicts. If you re not clear on how numbers are represented as text, you might review Stamp Applications no. 16. One more subtlety the Serout instruction that talks to a particular slave unit appends a period. after the numeric data. This has no significance other than to cause the receiving program to recognize that it has received a complete, valid number. I could have used any non-numeric character, but the period seemed appropriate. The slave program in Listing 28.2 is just the opposite of the master program. A slave waits to receive its ID, then grabs the number that follows and writes it to pins 2 through 7. It then enables its transmitter and sends its ID back to the master as an acknowledgment. Listing 28.3 is a BS2 master-unit program. It operates in exactly the way as the BS1 version, but uses the BS2 s serial timeout capability to recover from cases in which the slaves fail to respond. The Nuts and Volts of BASIC Stamps (Volume 1) Page 285

6 Refinements I have only scratched the surface of RS-485 networking, a pretty complicated subject. If you decide to put some of the principles shown here into action, be prepared for some challenges. For example, if you make changes to the protocol, the rules governing the way the master and slaves communicate, you will be fighting a debugging war on two fronts. If the net doesn t work, is the bug in the master code, the slave code, or both? What if the code is fine, but you reset the master before the slaves so that the slaves missed the message that would have started the net? Or what about a loose or incorrect connection? Or... You get the idea. One obvious refinement might be to include a PC in your developing network. RS-232 to RS-485 adapters are available from better computer and electronics suppliers like Jameco (sources). But you should be comfortable with serial-port programming before you add this new complication to your life. Page 286 The Nuts and Volts of BASIC Stamps (Volume 1)

7 ' Program Listing BS1 RS-485 Master ' Program: MASTR485.BAS (RS-485 net master) ' This program demonstrates some basic principles of using an RS-485 ' transceiver chip (LTC1487 used in our setup). The program sends ' a byte to each of three 'slave' units, which write that bit ' pattern to their 6 output pins not used for RS-485 communication ' and control. To confirm receipt of the message, slaves reply with ' their node id, in this case "A", "B", or "C". SYMBOL id = b11 ' ID number of net node. SYMBOL reply = b10 ' Response from node. SYMBOL pinset = b9 ' Pin setting for node. SYMBOL xm_rcv = 0 ' Pin 0 sets transmit (1) or receive (0). SYMBOL serio = 1 ' Pin 1 is used for serial input/output. ' For the purpose of the demo, the pinset value that the master will ' tell the slaves to write to their outputs will be an easy-to- ' recognize sequence: ' You can connect LEDs to the slaves' pins 2-7 to watch the sequence, ' or take my word for it. Since the lowest two bits are reserved for ' use by the RS-485 transceiver, the starting pattern is begin: pinset = % ' Starting bit pattern. again: pause 1000 ' Run slowly for demo purposes. for id = "A" to "C" ' Cycle through ids A, B, C. high xm_rcv: pause 1 ' Turn on 485 transmitter; wait briefly. serout serio,t2400,(id,#pinset,".") 'Send id, bit pattern, and ".". low xm_rcv ' Switch to receive mode. serin serio,t2400,reply ' Receive the slave's response. debug "Unit ", #@reply," OK.",cr ' Display on debug screen. next ' Next unit. debug cr,cr ' Scroll the screen. pinset = pinset * 2 ' Shift bit pattern left. if pinset = 0 then begin ' If bitpattern is 0, reload % goto again ' Else continue. The Nuts and Volts of BASIC Stamps (Volume 1) Page 287

8 ' Program Listing BS1 RS-485 Slave ' Program: SLAVE485.BAS (RS-485 net slave) ' This program demonstrates some basic principles of using an RS-485 ' transceiver chip (LTC1487 in our setup). The program waits for ' an ID letter matching the value myid set below. When that letter ' is received, the data that follows--a number in text format like ' "192"--is saved to the byte variable and then written to the upper ' six output pins. The program acknowledges receipt of the data ' by sending its ID back to the master. ' >>The master program is set up to expect three slaves with ids "A", ' "B" and "C". Use this program for all slaves, but change the symbol ' myid below to "B" and "C" for the other slave units. SYMBOL myid = "A" ' ID letter of this node. SYMBOL pinset = b10 ' Pin setting for node. SYMBOL xm_rcv = 0 ' Pin 0 sets transmit (1) or receive (0). SYMBOL serio = 1 ' Pin 1 is used for serial input/output. again: dirs = % ' Set upper 6 pins to output. low xm_rcv ' Set 485 transceiver to receive mode. serin serio,t2400,(myid),#pinset ' Wait for id, then receive number. pinset = pinset & % ' Strip off two lowest bits of number. let pins = pinset ' Write that value to outputs. high xm_rcv: pause 10 ' Set 485 transceiver for transmit. serout serio,t2400,(myid) ' Send back my ID letter. goto again ' Do it all over. ' Program Listing BS2 RS-485 Master ' Program: MASTR485.BS2 (RS-485 net master for BS2) ' This program demonstrates some basic principles of using an RS-485 ' transceiver chip (LTC1487 used in our setup). The program sends ' a byte to each of three 'slave' units, which write that bit ' pattern to their 6 output pins not used for RS-485 communication ' and control. To confirm receipt of the message, slaves reply with ' their node id, in this case "A", "B", or "C". If a slave does not ' respond within 100 milliseconds, this BS2 version of the master ' program displays an error message and carries on. id var byte ' ID number of net node. reply var byte ' Response from node. pinset var byte ' Pin setting for node. xm_rcv con 0 ' Pin 0 sets transmit (1) or receive (0). serio con 1 ' Pin 1 is used for serial input/output. T2400 con 396 ' Noninverted 2400-baud serial baudmode. ' For the purpose of the demo, the pinset value that the master will ' tell the slaves to write to their outputs will be an easy-to- ' recognize sequence: ' You can connect LEDs to the slaves' pins 2-7 to watch the sequence, ' or take my word for it. Since the lowest two bits are reserved for ' use by the RS-485 transceiver, the starting pattern is begin: pinset = % again: ' Starting bit pattern. Page 288 The Nuts and Volts of BASIC Stamps (Volume 1)

9 pause 1000 ' Run slowly for demo purposes. for id = "A" to "C" ' Cycle through ids A, B, C. high xm_rcv: pause 1 ' Turn on 485 transmitter; wait briefly. serout serio,t2400,[id,dec pinset,"."] 'Id, bit pattern, and ".". low xm_rcv ' Switch to receive mode. serin serio,t2400,100,neterr,[reply] ' Get response. debug "Unit ", reply," OK.",cr ' Display on debug screen. errreturn: next ' Next unit. debug cr,cr ' Scroll the screen. pinset = pinset * 2 ' Shift bit pattern left. if pinset = 0 then begin ' If bitpattern is 0, reload % goto again ' Else continue. ' If a slave unit does not repond within 100ms, the program comes here ' to display an error message on the screen, then continues with the ' next unit. neterr: debug "Unit ", id,": NO RESPONSE.",cr ' Display on debug screen. goto errreturn The Nuts and Volts of BASIC Stamps (Volume 1) Page 289

10

USING RS-232 to RS-485 CONVERTERS (With RS-232, RS-422 and RS-485 devices)

USING RS-232 to RS-485 CONVERTERS (With RS-232, RS-422 and RS-485 devices) ICS DataCom Application Note USING RS- to RS- CONVERTERS (With RS-, RS- and RS- devices) INTRODUCTION Table RS-/RS- Logic Levels This application note provides information about using ICSDataCom's RS-

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

RS-422/RS-485 Line Tester Model 485T

RS-422/RS-485 Line Tester Model 485T Not Recommended for New Installations. Please contact Technical Support for more information. RS-422/RS-485 Line Tester Model 485T Documentation Number 485T1995 This product Designed and Manufactured In

More information

G3P-R232. User Manual. Release. 2.06

G3P-R232. User Manual. Release. 2.06 G3P-R232 User Manual Release. 2.06 1 INDEX 1. RELEASE HISTORY... 3 1.1. Release 1.01... 3 1.2. Release 2.01... 3 1.3. Release 2.02... 3 1.4. Release 2.03... 3 1.5. Release 2.04... 3 1.6. Release 2.05...

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

Dual Protocol Transceivers Ease the Design of Industrial Interfaces

Dual Protocol Transceivers Ease the Design of Industrial Interfaces Dual Protocol Transceivers Ease the Design of Industrial Interfaces Introduction The trend in industrial PC designs towards smaller form factors and more communication versatility is driving the development

More information

SV613 USB Interface Wireless Module SV613

SV613 USB Interface Wireless Module SV613 USB Interface Wireless Module SV613 1. Description SV613 is highly-integrated RF module, which adopts high performance Si4432 from Silicon Labs. It comes with USB Interface. SV613 has high sensitivity

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

Appendix C RS-485 Network

Appendix C RS-485 Network Appendix C RS-485 Network EIA RS-485 is the industry s most widely used bidirectional, balanced transmission line standard. It is specifically developed for industrial multi-drop systems that should be

More information

Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN)

Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN) Jaguar Motor Controller (Stellaris Brushed DC Motor Control Module with CAN) 217-3367 Ordering Information Product Number Description 217-3367 Stellaris Brushed DC Motor Control Module with CAN (217-3367)

More information

muse Capstone Course: Wireless Sensor Networks

muse Capstone Course: Wireless Sensor Networks muse Capstone Course: Wireless Sensor Networks Experiment for WCC: Channel and Antenna Characterization Objectives 1. Get familiar with the TI CC2500 single-chip transceiver. 2. Learn how the MSP430 MCU

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

RS-232 Electrical Specifications and a Typical Connection

RS-232 Electrical Specifications and a Typical Connection Maxim > Design Support > Technical Documents > Tutorials > Interface Circuits > APP 723 Keywords: RS-232, rs232, RS-422, rs422, RS-485, rs485, RS-232 port powered, RS-232 to RS-485 conversion, daisy chain,

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

BASIC Stamp I Application Notes

BASIC Stamp I Application Notes 22: Interfacing a 2-bit ADC BASIC Stamp I Application Notes Introduction. This application note shows how to interface the LTC298 analog-to-digital converter (ADC) to the BASIC Stamp. Background. Many

More information

Microphone audio, from the MFJ-1278B to your transmitter. Ground, audio and PTT common. Push-to-talk, to allow the MFJ-1278B to key your transmitter.

Microphone audio, from the MFJ-1278B to your transmitter. Ground, audio and PTT common. Push-to-talk, to allow the MFJ-1278B to key your transmitter. Computer interfacing, covered in the previous chapter, is only half the interfacing task. The other half is connecting your MFJ-1278B to your radios. MFJ-1278B Radio Ports Interfacing the MFJ-1278B to

More information

Parallax MHz RF Transmitter (#27980) Parallax MHz RF Receiver (#27981)

Parallax MHz RF Transmitter (#27980) Parallax MHz RF Receiver (#27981) 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

Serial Communications RS232, RS485, RS422

Serial Communications RS232, RS485, RS422 Technical Brief AN236 Technical Brief AN236Rev A Serial Communications RS232, RS485, RS422 By John Sonnenberg S u m m a r y Electronic communications is all about interlinking circuits (processors or other

More information

745 Transformer Protection System Communications Guide

745 Transformer Protection System Communications Guide Digital Energy Multilin 745 Transformer Protection System Communications Guide 745 revision: 5.20 GE publication code: GEK-106636E GE Multilin part number: 1601-0162-A6 Copyright 2010 GE Multilin GE Multilin

More information

PAK-Vb/c PWM Coprocessor Data Sheet by AWC

PAK-Vb/c PWM Coprocessor Data Sheet by AWC PAK-Vb/c PWM Coprocessor Data Sheet 1998-2003 by AWC AWC 310 Ivy Glen League City, TX 77573 (281) 334-4341 http://www.al-williams.com/awce.htm V1.8 23 Oct 2003 Table of Contents Overview...1 If You Need

More information

Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter

Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter Column #18, August 1996 by Scott Edwards: Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter GETTING AN

More information

Technical Note #15. Radio Frequency Modems. GE ED&C Home Search ED&C GE ED&C Power Management Home GE ED&C PMCS Home

Technical Note #15. Radio Frequency Modems. GE ED&C Home Search ED&C GE ED&C Power Management Home GE ED&C PMCS Home 1 of 5 GE ED&C Home Search ED&C GE ED&C Power Management Home GE ED&C PMCS Home GE Power Management Control System Description Software Hardware Operation Product Support Operator Interfaces F A Q s App

More information

Compass Module AppMod (#29113) Electro-Mechanical Compass

Compass Module AppMod (#29113) Electro-Mechanical Compass 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.parallax.com/sic

More information

Rowan University Freshman Clinic I Lab Project 2 The Operational Amplifier (Op Amp)

Rowan University Freshman Clinic I Lab Project 2 The Operational Amplifier (Op Amp) Rowan University Freshman Clinic I Lab Project 2 The Operational Amplifier (Op Amp) Objectives Become familiar with an Operational Amplifier (Op Amp) electronic device and it operation Learn several basic

More information

AppKit: Using the LTC bit Analog-to-Digital Converter

AppKit: Using the LTC bit Analog-to-Digital Converter AppKit: Using the LTC1298 12-bit Analog-to-Digital Converter This AppKit shows how to use the Linear Technology LTC 1298 12-bit ADC chip with PIC microcontrollers and the Parallax BASIC Stamp single-board

More information

Introduction. Protocol Definitions. The RS-485 Standard. APPLICATION NOTE 3884 How Far and How Fast Can You Go with RS-485?

Introduction. Protocol Definitions. The RS-485 Standard. APPLICATION NOTE 3884 How Far and How Fast Can You Go with RS-485? Maxim > App Notes > Interface Circuits Keywords: RS485, RS422, RS-485, RS-422, Interface, Protocol, Line Drivers, Differential Line Drivers Jul 25, 2006 APPLICATION NOTE 3884 How Far and How Fast Can You

More information

ME 2110 Controller Box Manual. Version 2.3

ME 2110 Controller Box Manual. Version 2.3 ME 2110 Controller Box Manual Version 2.3 I. Introduction to the ME 2110 Controller Box A. The Controller Box B. The Programming Editor & Writing PBASIC Programs C. Debugging Controller Box Problems II.

More information

CP485-4 User s Manual

CP485-4 User s Manual CP485x4 User s Manual Version 1.0 2005 ZYPEX, Inc. CP485-4 User s Manual Table of Contents Table of Contents Product Description 1 CP485x4 Configuration & Setup 2 Power 2 Baud Rate 2 Control Mode 2 Duplex

More information

TD_485 Transceiver Modules Application Guide 2017

TD_485 Transceiver Modules Application Guide 2017 TD_485 Transceiver Modules Application Guide 2017 1. RS485 basic knowledge... 2 1.1. RS485 BUS basic Characteristics... 2 1.2. RS485 Transmission Distance... 2 1.3. RS485 bus connection and termination

More information

Home Automation, Inc. Omnistat2. RC-1000 and RC-2000 Communicating Thermostat. Serial Protocol Description

Home Automation, Inc. Omnistat2. RC-1000 and RC-2000 Communicating Thermostat. Serial Protocol Description Home Automation, Inc. Omnistat2 RC-1000 and RC-2000 Communicating Thermostat Serial Protocol Description This document contains the intellectual property of Home Automation, Inc. (HAI). HAI authorizes

More information

Brushed DC Motor Control. Module with CAN (MDL-BDC24)

Brushed DC Motor Control. Module with CAN (MDL-BDC24) Stellaris Brushed DC Motor Control Module with CAN (MDL-BDC24) Ordering Information Product No. MDL-BDC24 RDK-BDC24 Description Stellaris Brushed DC Motor Control Module with CAN (MDL-BDC24) for Single-Unit

More information

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide M-5578/0516 M-5578/0516 Section TABLE OF CONTENTS 1 Introduction... 1 2 Quick Guide on Getting Started... 2 Mounting the LVTX-10 Series

More information

There are many important factors when trying to achieve good, reliable communications between 2 devices.

There are many important factors when trying to achieve good, reliable communications between 2 devices. APPLICATION NOTE THIS INFORMATION PROVIDED BY AUTOMATIONDIRECT.COM TECHNICAL SUPPORT These documents are provided by our technical support department to assist others. We do not guarantee that the data

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

B & D Enterprises 1P repeater controller pg 1 INTRODUCTION:

B & D Enterprises 1P repeater controller pg 1 INTRODUCTION: B & D Enterprises 1P repeater controller pg 1 INTRODUCTION: The 1P is a basic repeater controller. The controller uses low power devices and stores all commands and system status in non-volatile EE prom.

More information

CANopen Programmer s Manual Part Number Version 1.0 October All rights reserved

CANopen Programmer s Manual Part Number Version 1.0 October All rights reserved Part Number 95-00271-000 Version 1.0 October 2002 2002 All rights reserved Table Of Contents TABLE OF CONTENTS About This Manual... iii Overview and Scope... iii Related Documentation... iii Document Validity

More information

SMARTALPHA RF TRANSCEIVER

SMARTALPHA RF TRANSCEIVER SMARTALPHA RF TRANSCEIVER Intelligent RF Modem Module RF Data Rates to 19200bps Up to 300 metres Range Programmable to 433, 868, or 915MHz Selectable Narrowband RF Channels Crystal Controlled RF Design

More information

Uni-Mux XQL Multi-Channel Data Acquisition Module

Uni-Mux XQL Multi-Channel Data Acquisition Module Uni-Mux XQL Multi-Channel Data Acquisition Module Uni-Mux XQL Multi-Channel Data Acquisition Module * 8 channel differential inputs. * 16 channel single ended inputs. * User programmable via P.C. software.

More information

WTDIN-M. eeder. Digital Input Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies

WTDIN-M. eeder. Digital Input Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies eeder Technologies 90-A Beal Pkwy NW, Fort Walton Beach, FL 32548 www.weedtech.com 850-863-5723 Digital Input Module FEATURES 8 wide-range digital input channels with high voltage transient protection.

More information

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version RF Transceiver or Intelligent Modem Versions Host Data Rate upto 19,200 Baud Data Rates to 20 K baud. 2 Selectable RF Channels Narrowband Crystal Controlled Optimal Range 200m Supply Voltage 3-5V Very

More information

Mate Serial Communications Guide This guide is only relevant to Mate Code Revs. of 4.00 and greater

Mate Serial Communications Guide This guide is only relevant to Mate Code Revs. of 4.00 and greater Mate Serial Communications Guide This guide is only relevant to Mate Code Revs. of 4.00 and greater For additional information contact matedev@outbackpower.com Page 1 of 20 Revision History Revision 2.0:

More information

WTDOT-M. eeder. Digital Output Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies

WTDOT-M. eeder. Digital Output Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies eeder Technologies 90-A Beal Pkwy NW, Fort Walton Beach, FL 32548 www.weedtech.com 850-863-5723 Digital Output Module FEATURES 8 high-current open-collector output channels with automatic overload shutdown.

More information

Catalog

Catalog - 1 - Catalog 1. Overview...- 3-2. Feature... - 3-3. Application...- 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 4-6. Operation... - 4-1) Power on Reset... - 4-2) Sleep mode... - 4-3) Working

More information

Checking Battery Condition and Multiplexing I/O Lines

Checking Battery Condition and Multiplexing I/O Lines Column #5, July 1995 by Scott Edwards: Checking Battery Condition and Multiplexing I/O Lines THIS month s first application was contributed by Guy Marsden of ART TEC, Oakland, California. Guy, a former

More information

RS 485/422 to Fibre Optic Modems ELO E243, ELO E244, ELO E245. Operation manual

RS 485/422 to Fibre Optic Modems ELO E243, ELO E244, ELO E245. Operation manual RS 485/422 to Fibre Optic Modems ELO E243, ELO E244, ELO E245 Operation manual 1.0 Introduction 3 2.0 Operation principles 3 3.0 Installation 3 3.1 RS422 Interface Connection 4 3.2 RS485 Interface Connection

More information

InfraStruXure Manager v4.x Addendum: Building Management System Integration

InfraStruXure Manager v4.x Addendum: Building Management System Integration InfraStruXure Manager v4.x Addendum: Building Management System Integration Introduction This addendum explains the integration of the APC InfraStruXure Manager Appliance with a Building Management System

More information

Catalog

Catalog - 1 - Catalog 1. Overview... - 3-2. Feature...- 3-3. Application... - 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation...- 4-1) Power on Reset... - 4-2) Sleep mode...- 4-3) Working

More information

OVEN INDUSTRIES, INC. Model 5C7-362

OVEN INDUSTRIES, INC. Model 5C7-362 OVEN INDUSTRIES, INC. OPERATING MANUAL Model 5C7-362 THERMOELECTRIC MODULE TEMPERATURE CONTROLLER TABLE OF CONTENTS Features... 1 Description... 2 Block Diagram... 3 RS232 Communications Connections...

More information

RS-485 Transmit Enable Signal Control Nigel Jones

RS-485 Transmit Enable Signal Control Nigel Jones RMB Consulting Where innovation and execution go hand in hand RS-485 Transmit Enable Signal Control Nigel Jones Quite a few embedded systems include multiple processors. Sometimes these processors stand

More information

Modbus communication module for TCX2: AEX-MOD

Modbus communication module for TCX2: AEX-MOD Modbus communication module for TCX2: Communication Specification TCX2 is factory installed in TCX2 series controllers with -MOD suffix, and is also available separately upon request for customer installation

More information

Moxa ICF-1280I Series Industrial PROFIBUS-to-Fiber Converter

Moxa ICF-1280I Series Industrial PROFIBUS-to-Fiber Converter Moxa ICF-1280I Series Industrial PROFIBUS-to-Fiber Converter Hardware Installation Guide First Edition, August 2013 2013 Moxa Inc. All rights reserved. P/N: 1802012800011 Introduction The ICF-1280I series

More information

BeeLine TX User s Guide V1.1c 4/25/2005

BeeLine TX User s Guide V1.1c 4/25/2005 BeeLine TX User s Guide V1.1c 4/25/2005 1 Important Battery Information The BeeLine Transmitter is designed to operate off of a single cell lithium polymer battery. Other battery sources may be used, but

More information

STX Stair lighting controller.

STX Stair lighting controller. Stair lighting controller STX-1792 STX-1792 controller is used to control stairs lighting dynamically. The backlight is switched on with the subsequent steps, depending on the motion directions: ascending

More information

AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI

AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI ATX LED Consultants Inc 815-A Brazos #326 Austin Tx, 78701 512 377 6052 http://atx-led.com AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI Product Description - AL-DALI wall switch with 0-10v output Combine

More information

RS-422/485 Application Note

RS-422/485 Application Note RS-422 and RS-485 Application Note RS-422/485 Application Note Cover Page Table of Contents CHAPTER 1: OVERVIEW... 1 INTRODUCTION... 1 DATA TRANSMISSION SIGNALS... 1 Unbalanced Line Drivers... 1 Balanced

More information

Get Your Motor Runnin

Get Your Motor Runnin Column #100 August 2003 by Jon Williams: Get Your Motor Runnin Most people dont realize that the BASIC Stamp 2 has actually been around for quite a long time. Like the BASIC Stamp 1, it was designed to

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

Model Q46 Modbus Communications Manual

Model Q46 Modbus Communications Manual Model Q46 Modbus Communications Manual Home Office European Office Analytical Technology, Inc. ATI (UK) Limited 6 Iron Bridge Drive Unit 1 & 2 Gatehead Business Park Collegeville, PA19426 Delph New Road,

More information

CONNECT SYSTEMS INCORPORATED 5321 Derry Ave., Suite B Agoura Hills, CA FLEX SERIES UNIVERSAL CONTROLLER

CONNECT SYSTEMS INCORPORATED 5321 Derry Ave., Suite B Agoura Hills, CA FLEX SERIES UNIVERSAL CONTROLLER CONNECT SYSTEMS INCORPORATED 5321 Derry Ave., Suite B Agoura Hills, CA 91301 Phone (805) 642-7184 Fax (805) 642-7271 FLEX SERIES UNIVERSAL CONTROLLER FLEX IIIA CTCSS COMMUNITY TONE PANEL User s Instruction

More information

Contents. Warranty and Disclaimer 2 Introduction 3

Contents. Warranty and Disclaimer 2 Introduction 3 Contents Warranty and Disclaimer 2 Introduction 3 Physical Dimensions Board Layout 4 Servo connections 5 Using the Serv8 Usage 6 Setting the start address 7 Setting the pulse width 8 Using the configuration

More information

Data transmission - Transmission modes

Data transmission - Transmission modes Data transmission - Transmission modes Transmission modes A given transmission on a communications channel between two machines can occur in several different ways. The transmission is characterised by:

More information

USB Port Medium Power Wireless Module SV653

USB Port Medium Power Wireless Module SV653 USB Port Medium Power Wireless Module SV653 Description SV653 is a high-power USB interface integrated wireless data transmission module, using high-performance Silicon Lab Si4432 RF chip. Low receiver

More information

ZCS485 User s Manual. Version ZYPEX, Inc.

ZCS485 User s Manual. Version ZYPEX, Inc. ZCS485 User s Manual Version 2.2 2004 ZYPEX, Inc. Table of Contents Product Description 1 ZCS485 Configuration & Setup 2 4-wire Operation 2 2-wire Operation 2 Dual Port Operation 2 Carrier Detect 2 Transmitter

More information

Week 2 Lecture 1. Introduction to Communication Networks. Review: Analog and digital communications

Week 2 Lecture 1. Introduction to Communication Networks. Review: Analog and digital communications Week 2 Lecture 1 Introduction to Communication Networks Review: Analog and digital communications Topic: Internet Trend, Protocol, Transmission Principle Digital Communications is the foundation of Internet

More information

ROM/UDF CPU I/O I/O I/O RAM

ROM/UDF CPU I/O I/O I/O RAM DATA BUSSES INTRODUCTION The avionics systems on aircraft frequently contain general purpose computer components which perform certain processing functions, then relay this information to other systems.

More information

LAX016 Series Logic Analyzer User Guide

LAX016 Series Logic Analyzer User Guide LAX016 Series Logic Analyzer User Guide QQ: 415942827 1 Contents I Overview... 4 1 Basic knowledge... 4 2 Product series... 4 3 Technical specification... 5 II Brief introduction to JkiSuite software...

More information

2320 cousteau court

2320 cousteau court Technical Brief AN139 Rev C22 2320 cousteau court 1-760-444-5995 sales@raveon.com www.raveon.com RV-M7 GX with TDMA Data By John Sonnenberg Raveon Technologies Corporation Overview The RV-M7 GX radio modem

More information

ICS REPEATER CONTROLLERS

ICS REPEATER CONTROLLERS ICS REPEATER CONTROLLERS BASIC CONTROLLER USER MANUAL INTEGRATED CONTROL SYSTEMS 1076 North Juniper St. Coquille, OR 97423 Email support@ics-ctrl.com Website www.ics-ctrl.com Last updated 5/07/15 Basic

More information

ProLink Radio. 900 MHz SDI-12 Data Radio Scienterra Limited. Version A-0x0C-1-AC 20 October 2009

ProLink Radio. 900 MHz SDI-12 Data Radio Scienterra Limited. Version A-0x0C-1-AC 20 October 2009 ProLink Radio 900 MHz SDI-12 Data Radio Scienterra Limited Version A-0x0C-1-AC 20 October 2009 For sales inquiries please contact: ENVCO Environmental Collective 31 Sandringham Rd Kingsland, Auckland 1024

More information

DragonLink Advanced Transmitter

DragonLink Advanced Transmitter DragonLink Advanced Transmitter A quick introduction - to a new a world of possibilities October 29, 2015 Written by Dennis Frie Contents 1 Disclaimer and notes for early release 3 2 Introduction 4 3 The

More information

Installation and Operating Instructions

Installation and Operating Instructions Energy Division Installation and Operating Instructions Quadratic Integra 1530 Digital Metering Systems Our commitment. Your advantage. Contents Page 1 Introduction 4 1.1 Measurement Capabilities 5 1.2

More information

R5 RIC Quickstart R5 RIC. R5 RIC Quickstart CONTENTS. Saab TransponderTech AB. Appendices. Project designation. Document title

R5 RIC Quickstart R5 RIC. R5 RIC Quickstart CONTENTS. Saab TransponderTech AB. Appendices. Project designation. Document title Appendices 1 (10) Project designation R5 RIC Document title CONTENTS 1 Installation... 2 1.1 Connectors... 2 1.1.1 Power... 2 1.1.2 Video... 2 1.1.3 Sync... 3 1.1.4 RS232/ARP/ACP... 3 1.1.5 Radar data...

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

AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI

AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI ATX LED Consultants Inc 815-A Brazos #326 Austin Tx, 78701 512 377 6052 http://atx-led.com AL-DALI-010v 0-10v Dimmer 3-Way switch with DALI Product Description - AL-DALI wall switch with 0-10v output Combine

More information

Contents. Warranty and Disclaimer 2 Introduction 3

Contents. Warranty and Disclaimer 2 Introduction 3 Contents Warranty and Disclaimer 2 Introduction 3 Physical Dimensions Board Layout 4 Usage Using the Relay board 5 Setting the start address 5 Configuration Jumper 6 Using the Relays 7 Using the DMX connectors

More information

Fiber Optic Expansion Interface

Fiber Optic Expansion Interface User Manual for the HE697FBX100 & HE697FBX105 Fiber Optic Expansion Interface Fourth Edition 20 November 1998 MAN0215-04 PREFACE 20 NOV 1998 PAGE 2 PREFACE This manual explains how to use the Fiber Optic

More information

Reading and working through Learn Networking Basics before this document will help you with some of the concepts used in wireless networks.

Reading and working through Learn Networking Basics before this document will help you with some of the concepts used in wireless networks. Networking Learn Wireless Basics Introduction This document covers the basics of how wireless technology works, and how it is used to create networks. Wireless technology is used in many types of communication.

More information

LIN Bus Shunt. Slave Node Position Detection. Revision 1.0. LIN Consortium, LIN is a registered Trademark. All rights reserved.

LIN Bus Shunt. Slave Node Position Detection. Revision 1.0. LIN Consortium, LIN is a registered Trademark. All rights reserved. December 10, 2008; Page 1 LIN Bus Shunt LIN Consortium, 2008. LIN is a registered Trademark. All rights reserved. December 10, 2008; Page 2 DISCLAIMER This specification as released by the LIN Consortium

More information

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved.

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved. BlinkRC 802.11b/g WiFi Servo Controller with Analog Feedback BlinkRC User Manual 21 December 2010 Hardware Version 1.1 Manual Version 2.0 Copyright 2010, Blink Gear LLC. All rights reserved. http://blinkgear.com

More information

SETUP and OPERATING MANUAL ADVANCED MULTI-CHANNEL VEHICLE INTERCOM SYSTEM (AMCVIS)

SETUP and OPERATING MANUAL ADVANCED MULTI-CHANNEL VEHICLE INTERCOM SYSTEM (AMCVIS) SETUP and OPERATING MANUAL Sept 23, 2010 Rev D ADVANCED MULTI-CHANNEL VEHICLE INTERCOM SYSTEM (AMCVIS) with DIGITAL CREW CONTROL and RADIO BRIDGING The AMCVIS was designed, manufactured and is supported

More information

Section 1: Sync only the audio (Zerobeat) Section 2: Sync Radio carriers and Audio

Section 1: Sync only the audio (Zerobeat) Section 2: Sync Radio carriers and Audio Multiple Transmitters to cover more area Section 1: Sync only the audio (Zerobeat) Section 2: Sync Radio carriers and Audio Section 1: Sync only the audio (Zerobeat) 1.1 The Basics Page 2 1.2 Syncing and

More information

TCSS 372 Laboratory Project 2 RS 232 Serial I/O Interface

TCSS 372 Laboratory Project 2 RS 232 Serial I/O Interface 11/20/06 TCSS 372 Laboratory Project 2 RS 232 Serial I/O Interface BACKGROUND In the early 1960s, a standards committee, known as the Electronic Industries Association (EIA), developed a common serial

More information

Walkie-Talkie. User Manual and Instruction. Getting Started

Walkie-Talkie. User Manual and Instruction. Getting Started Walkie-Talkie User Manual and Instruction Getting Started Installing the AA Batteries Your radio uses 3 AA Alkaline batteries. 1. With the back of the radio facing you, lift the battery latch up to release

More information

J. La Favre Using Arduino with Raspberry Pi February 7, 2018

J. La Favre Using Arduino with Raspberry Pi February 7, 2018 As you have already discovered, the Raspberry Pi is a very capable digital device. Nevertheless, it does have some weaknesses. For example, it does not produce a clean pulse width modulation output (unless

More information

APPLICATION BULLETIN. SERIAL BACKGROUNDER (Serial 101) AB23-1. ICS ICS ELECTRONICS division of Systems West Inc. INTRODUCTION CHAPTER 2 - DATA FORMAT

APPLICATION BULLETIN. SERIAL BACKGROUNDER (Serial 101) AB23-1. ICS ICS ELECTRONICS division of Systems West Inc. INTRODUCTION CHAPTER 2 - DATA FORMAT ICS ICS ELECTRONICS division of Systems West Inc. AB- APPLICATION BULLETIN SERIAL BACKGROUNDER (Serial 0) INTRODUCTION Serial data communication is the most common means of transmitting data from one point

More information

3050 Stereo Power Amplifier

3050 Stereo Power Amplifier 3050 Stereo Power Amplifier Owners Manual 10/26/2016 Boulder Amplifiers, Inc. 255 Taylor Ave. Louisville, CO 80027 (303) 449-8220 www.boulderamp.com Fault Conditions Boulderlink Appendix Remote Control

More information

Mech 296: Vision for Robotic Applications. Logistics

Mech 296: Vision for Robotic Applications. Logistics Mech 296: Vision for Robotic Applications http://www.acroname.com/ Lecture 6: Embedded Vision and Control 6.1 Logistics Homework #3 / Lab #1 return Homework #4 questions Lab #2 discussion Final Project

More information

2F. No.25, Industry E. 9 th Rd., Science-Based Industrial Park, Hsinchu, Taiwan Application Note of OGM220, AN001 V1.8

2F. No.25, Industry E. 9 th Rd., Science-Based Industrial Park, Hsinchu, Taiwan Application Note of OGM220, AN001 V1.8 Application Note of OGM220, AN001 V1.8 1.0 Introduction OGM220 series is a dual channels NDIR module having a digital output directly proportional to CO2 concentration. OGM220 is designed for multi-dropped

More information

GETTING STARTED. Radio layout. LCD display with icons

GETTING STARTED. Radio layout. LCD display with icons GETTING STARTED Radio layout LCD display with icons 1. Key lock button 2. Battery meter 3. Main channel indicator 4. Scan icon 5. Roger beep indicator 6. CTCSS sub-channel indicator 7. VOX indicator 1

More information

Boulder W Mono Power Amplifier

Boulder W Mono Power Amplifier Boulder 1050 500 W Mono Power Amplifier Owners Manual 4/11/04 Boulder Amplifiers, Inc. 3235 Prairie Ave. Boulder, CO 80301 www.boulderamp.com APPENDIX BOULDER LINK REMOTE CONTROL OPERATION GETTING STARTED

More information

Micro Fox PicCon Manual

Micro Fox PicCon Manual Micro Fox PicCon Manual Version 0.61 The Micro Fox PicCon (MF PC) is a 700mW fox hunting/hidden transmitter hunt transceiver. It can be configured and remotely controlled via DTMF tones, and also be configured

More information

TX4400 UHF CB RADIO INSTRUCTION MANUAL TX4400 INSTRUCTION MANUAL PAGE 1

TX4400 UHF CB RADIO INSTRUCTION MANUAL TX4400 INSTRUCTION MANUAL PAGE 1 TX4400 UHF CB RADIO INSTRUCTION MANUAL TX4400 INSTRUCTION MANUAL PAGE 1 TABLE OF CONTENTS GENERAL................................... 3 FEATURES.................................. 3 BASIC OPERATION...4 Front

More information

FAILSAFE Biasing of Differential Buses

FAILSAFE Biasing of Differential Buses FAILSAFE Biasing of Differential Buses OVERVIEW Multi-Point bus configurations present two potential problems to the system I/O designer that do not commonly occur in Point-to-Point configurations. The

More information

Microcontroller interfacing

Microcontroller interfacing Introduction to Microcontroller interfacing Prepared By : Eng : Ahmed Youssef Alaa El-Din Youssef El-Kashef Date : 20/08/2011 Contents What is a PIC Microcontroller? Simple Microcontroller Standard Interfacing

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

Data Acquisition Modules/ Distributed IO Modules

Data Acquisition Modules/ Distributed IO Modules User Manual Data Acquisition Modules/ Distributed IO Modules Future Design Controls, Inc. 7524 West 98 th Place / P.O. Box 1196 Bridgeview, IL 60455 888.751.5444 - Office: 888.307.8014 - Fax 866.342.5332

More information

TD_CAN Transceiver Modules Application Guide 2017

TD_CAN Transceiver Modules Application Guide 2017 TD_CAN Transceiver Modules Application Guide 2017 1. CAN bus basic knowledge... 2 1.1 CAN basic characteristics... 2 1.2 CAN bus topology... 2 1.3 CAN bus transmission distance... 3 1.4 Number of nodes

More information

Brian Hanna Meteor IP 2007 Microcontroller

Brian Hanna Meteor IP 2007 Microcontroller MSP430 Overview: The purpose of the microcontroller is to execute a series of commands in a loop while waiting for commands from ground control to do otherwise. While it has not received a command it populates

More information

PROMUX Distributed MODBUS I/O Modules Catalog and Design Guide

PROMUX Distributed MODBUS I/O Modules Catalog and Design Guide PROMUX Distributed MODBUS I/O Modules Catalog and Design Guide 14/11/2006 V10 P.O.Box 24 Stanfield 3613 SOUTH AFRICA Tel: +27 (031) 7028033 Fax: +27 (031) 7028041 Email: proconel@proconel.com Web: www.proconel.com

More information

PROGRAMMABLE CFE PULLER

PROGRAMMABLE CFE PULLER PROGRAMMABLE CFE PULLER Manual Pulling of PE tubing is a critical step in CFE fabrication. Getting constant shapes in CFE is difficult and to achieve a high success rate in pulling CFE requires patience

More information