Sierra Radio Systems. DCN Device Control Network. Reference Manual. Version 1.0

Size: px
Start display at page:

Download "Sierra Radio Systems. DCN Device Control Network. Reference Manual. Version 1.0"

Transcription

1 Sierra Radio Systems DCN Device Control Network Reference Manual Version 1.0

2 Sierra Radio Systems Device Control Network DCN INTRODUCTION The Sierra Radio Systems Device Control Network (DCN) provides a way to allow multiple devices communicate on a wired or wireless network. The primary application for the DCN is to allow a master computer or device, to control and monitor a network of real-time control devices. The DCN specification defines four components, the physical and RF connections and electrical signals, data link layer, the application layer and network topology. The purpose of the physical layer is to define the standard mechanical connectors, pin assignments, signaling voltages, and RF frequencies. The next layer up, the data link layer, defines the format of data packets sent on the network. The third layer defines the format of the payload being sent from point A to point B and finally recommendations for the network topology. SECTION 1 - PHYSICAL CONNECTIONS AND ELECTRICAL SIGNALING The DCN is a dual-band system meaning that data may be transmitted over wired or RF communications paths or both. Physical Connections The control protocol can be transmitted over any type of communications medium. The most common connections are wired through an RS232 or RS485 connection, a wireless connection, typically using an RF mesh data network or over ethernet. Wired RS-485 The RS485 wired implementation uses commonly available Ethernet CAT5 cable and RJ-45 connectors. While the DCN protocol has nothing at all to do with Ethernet except that we take advantage of the wide availability of premade cables. The CAT5 cable provides 8 wires which carry the network traffic and power. Many devices have two RJ-45 connectors wired in parallel. This allows for easy daisy-chaining of multiple devices using CAT5 cable. This makes it easy to add more devices to the network without the need for any kind of hub or switch. RJ-45 Cable Assignments 1 Network data signal A 5 - Ground 2 Network data signal B 6 - Reserved 3 Reserved VDC 4 Ground VDC

3 Wired RS-485 Electrical Signaling - continued The electrical signaling used is based on RS-485. This signaling technique is a half-duplex, differential pair that allows multiple devices to be connected to a single pair of wires. RS-485 also has the advantage of allowing devices to be spread over 1000 s of feet of cable without the need for signal conditioning or repeaters. Power can be supplied by any device and delivered to all devices on the network. If a device can supply power to the network, there must be a way to disconnect the power, usually through a jumper block. Only 1 device is allowed to supply power to the network at a time. Network voltage should be between VDC. This provides enough of headroom to power any DCN compatible device. Wireless RF Data Network The DCN can also use RF modules that operate on 2.4 GHz and 900 MHz. If mesh network radio modules are used, if you add new nodes to the RF network, the automatically become part of the network. This is particularly convenient when extending the range between devices. Each node can be thought of as a serial port that taps into an invisible network of other devices. When data is sent into the serial port of the data radio, the packet will be delivered to every data radio in the network and the packet will be transmitted out of the RF module s serial port into the local device s CPU. A network can consist of a mixture of wired RS-485 and RF data network enabled nodes.

4 SECTION 2 - DATA RATES AND PACKET FORMAT The DCN data protocol sends ASCII data at 9600 baud, non-inverted, 8 bits, no parity. The protocol defines the format of packets of data transmitted on the network. The simple way to think of a packet is a string of ASCII characters that contains the payload to be transmitted from point A to point B and the additional characters necessary to provide synchronization, packet type identification, addressing, and error checking. A typical packet looks like this... /A01:RY1,1:4D <13> Start Packet From To : Payload : LRC End of Type Address Address Value of Packet Packet Start of Packet A forward slash character / is reserved for the start of packet indication. When a slave device sees the slash, it knows there is a new packet. Packet Type The packet type character defines the format of the packet and instructions for how the packet is to be interpreted. Packet types include direct, addressed and addressed with no error checking. They start each packet with the characters //, /A, and /0 (zero) respectively. Direct Packet type // ( Example: //reset ) This is a very simple format that is intended only for use in a system with a single node. The format for a direct packet is simply the header // and the payload. As you can see, there is no address or error checking. If multiple nodes are on the network and a direct command is issued, all nodes will decode and execute the command. This can be very convenient to send master commands to all nodes but there is no error checking. Addressed Packet type /A ( Example: /A01:reset:39 ) These packets start with /A and contain the source and destination address, payload and error check data. Addressed Packet, no error checking type /0 ( Example: /001:reset:34 ) This is an Addressed packet that ignores the error checking field. This is used for manual entry of network addressed packets without the need to calculate the error checking value.

5 Device Addresses You can assign any node an address using any printable character. However, for maximum functionality, we recommend using numbers as the addresses.. Pre-assigned default device addresses 0 System master Devices Station Controller 2 Remote RF coax relay 3 GPIO board 4 Not assigned 5 Not assigned 6 Not assigned 7 RadioRouter audio mixing and switching device 8 Not assigned 9 Not assigned A-Z Not assigned * Broadcast to all devices. Any other characters are reserved and should not be used. If you add a second device and the default device address is already in use, just pick another. Payload The payload is application dependent. See standard command summary. Error Check Value The error check value is an 8 bit LRC.. The LRC is applied to all characters in the packet except the initial start of packet character /. Of course the LRC is not applied to the LRC characters either. Example: with the packet /A01:reset:39 the LRC is applied to A01:reset: End of Packet The end of packet character is a carriage return, ASCII byte value 013 (decimal). When an end of packet character is encountered, the input buffer is evaluated. The evaluation process identifies a packet by finding the start of packet synchronizing character / and extracts the buffer contents up to the end of packet character. The command parser then extracts the packet type, addresses, error check value and payload. The error check value is calculated and compared to the packets error check value. If the values do not match, the buffer is flushed. If the packet is good, then the to address is examined. If the to address is the same value as the devices address, the packet analysis will continue, if not, the packet is ignored and flushed from the buffer.

6 PAYLOAD FORMAT The payload may contain any printable characters (0-9, A-Z, a-z, and punctuation except / and,) The payload may contain from zero to 9 fields delimited by commas. The comma delimiter must be placed between fields and not at the beginning of the payload. The payload field assignment is typically a command field followed by zero to 8 argument fields. For example: RY1,0 Where the command is RY1 and argument 1 is 0. In this example the command tells the target device to set relay 1 to a value of 0 (or off).

7 STANDARD COMMANDS Every device may support a different set of commands. Refer to the device s reference manual for specific commands supported. These examples are presented to provide examples of typical commands. Common System Commands PING,2 Pings device #2 ROLLCALL Every device will respond with its registration state (registered or not) REBOOT Restart the device REGISTER Tell the device the master knows it is there RELEASE Tell the device it is no longer registered to the master SETADDR,5 Set device address to 5. Dip switch over rides this on reboot ECHO,BLA Send the string BLA back to the master HELP Display help information System Controller specific commands Relay commands RY,10100 Set relays 1..5 to be on, off, on, off, off RY3,1 Set relay 3 to be on (options: 1=on, 0=off, T=Toggle, P=Pulse) Front panel commands FP,BEEP,2 Generate 2 beeps FP,CW,CQDX Send CQDX in CW FP,VOL,50 Set the tone generator to a volume of 50 in a range from 0 to 255 FP,LCD,2,5,HELLO Tell the front panel processor to display the string HELLO on line 2 character position 5 FP,LCD,CLS Clear LCD screen

8 Xbee Firmware Configuration Guide Introduction The xbee line of data radio modules from Digi-International are very flexible and can be configured in a variety of ways. These devices support two different network protocols ZigBee and Digi-Mesh. Both protocol stacks are built on the industry standard IEEE network layers. ZigBee and Digi-Mesh build functionality on top of that. Each protocol offers many configuration parameters to tailor the device s behavior to meet the needs of a wide range of applications. For a complete description of configuration options refer to the Digi web site for more details. It is far beyond the scope of this document to present all protocol, and configuration options. We have selected a specific configuration that works very well for the vast majority of applications. If you need different functionality, consult the Digi web site and on-line support groups. To install firmware and set configuration parameters in each radio module, you will use a program called X-CTU available free from Digi-International. Firmware Stack We recommend the Digi-Mesh protocol stack for our HamStack projects. Digi-Mesh has most of the advantages of the ZigBee mesh network protocol but is simpler to configure and deploy. The only disadvantage to Digi-Mesh is that many vendors support ZigBee while Digi-Mesh is unique to Digi- International products. One great feature of the Digi products is the ability to re-flash the firmware in each module with different protocols. If you start with Digi-Mesh and want to experiment with ZibBee, you just need to load the ZigBee firmware and you are ready to go. Step 1 Install X-CTU PC software The X-CTU software can be downloaded from the Digi-International web site. Step 2 - Install the Digi-Mesh firmware For the 2.4 GHz xbee (1mw) module, install modem firmware type: XB24-DM For the 2.4 GHz xbee PRO module, install modem firmware type: XBP24-DM For the 900 MHz xbee PRO module, install modem firmware type: XPB09-DM The field Function Set should be set to XBEE PRO DIGIMESH 2.4 There are only a few configuration parameters required to get your data radio module up and running on the network. Step 3 - Set network ID This is the name of the RF network that all units will join. This is an arbitrary 4 digit number. You can pick any number you want. You can run multiple independent networks on the same RF channel by setting some modules to one address and other modules in another network to another address and they will ignore each other. HamStack default recommendation: Set Networking ID Modem VID to 7373

9 xbee Firmware Configuration Guide Step 4 Set operating channel This is one of the 12 available RF carrier channels that the network will operate on. Channels are assigned values from 0C to 17 (C, D, E, F, 10, 11, 12,13,14,15, 16, 17, 18) represented as a hex value. The RF carrier channels overlap with other devices in the 2.4 GHz band including WiFi and Bluetooth networks. Generally speaking you can pick any channel and it will work fine even with these other networks in operation. If you are in an RF dense environment and want to take all steps possible to avoid interference, pick a channel that does not overlap with your local WiFi networks. See the frequency table in the appendix. We recommend using channel C, this channel overlaps with WiFi channels 1, 2 and 3. HamStack default recommendation: Set Network CH Operating Channel to C Step 5 Set device address Setting the high order destination address to 0 and the low order destination address to FFFF will put the radio in broadcast mode. All data packets received will be sent to the serial port. In a HamStack environment running the StationStack Network Control Protocol on the HamStack CPU, the device address decoding is done by the HamStack CPU. This makes the network operate as a simple mesh of all devices where any data going into one data radio s serial port will appear at the output of all data radios. The HamStack CPU will then process the payload of the packets. HamStack default recommendation: Set Addressing DL Destination Address Low to FFFF Set Addressing DH Destination Address High to 0 Step 6 Set serial port configuration The data radio module s serial port can be configured to one of eight standard baud rates including 1200, 2400, 4800, 9600, 19200, 38400, 57600, , and baud. HamStack default recommendation: Set Serial Interfacing BD Baud Rate to 9600

10 Digi International X-CTU firmware configuration software

11 Network Topology Overview The Sierra Radio Device Control Network can be build with wired or wireless devices or a combination of both. The network protocol is completely independent from the physical communications channels. In the DCN, all devices are listening all the time to the network. One device, typically a computer, is the master and all other devices are slaves. All slaves remain quiet until the master communicates with them. Every device, including the master has unique address. Typically the master is address 0 (zero) and devices are numbered 1, 2, 3 and so on. Think of the network as one big party line where everyone is connected all the time. When anyone transmits, all devices can hear it. There are three commonly used physical connections used in a DCN. They are RS232 for point to point applications with one master and one slave device. RS485 which is a serial interface but very different from RS232. RS485 uses differential signaling on a pair of wires (called the A and B wires) and operate half duplex. The advantage to RS485 is the ability to hang multiple devices on the A/B pair and the long physical distances that can be used. The third common connection type is an RF data channel. The DCN data radios take serial data into their UART and package the data up in a packet and transmits them to the other data radios in the network where the same data comes out the UART on the other end and into the local devices microcontroller. Lets look at some typical network configurations. RS232 or RS485 Master Address: 0 Device Address: 1 In the most simple example, the master can talk to a slave over a wired connection. Some Sierra Radio products have RS232 ports but all devices have the RS485 DCN connector which is a RJ45 (ethernet) modular connector. 2.4 GHz RF Path Data Radio Master Address: 0 Data Radio Device Address: 1 When using a RF data radio module instead of a wired connection, the logical behavior is exactly the same. Data that comes out of the master s UART will arrive at the input to the UART on the slave.

12 RS485 over CAT5 RS485 over CAT5 RS232 Network Topology Wired and wireless connections can be combined. One example is where the local devices are connected with cable and the remote devices connected with a wireless data connection. For example Master Address: GHz RF Path Data Radio RS232 RS485 Communication Bridge Device Address: 1 Device Address: 2 Data Radio RS232 RS485 Communication Bridge Device Address: 3 Device Address: 4 In this example, all devices are listing at the same time to the DCN regardless of the medium of communications.

13 DigiMesh RF Data Module Reference

14 Appendix Standard Commands Used By All Devices

15 STANDARD COMMANDS ALL DEVICES Every device may support a different set of commands. Refer to the device s reference manual for specific commands supported. These examples are presented to provide examples of typical commands. Common System Commands PING,2 Pings device #2 ROLLCALL Every device will respond with its registration state (registered or not) REBOOT Restart the device REGISTER Tell the device the master knows it is there RELEASE Tell the device it is no longer registered to the master SETADDR,5 Set device address to 5. Dip switch over rides this on reboot ECHO,BLA Send the string BLA back to the master HELP Display help information System Controller specific commands Relay commands RY,10100 Set relays 1..5 to be on, off, on, off, off RY3,1 Set relay 3 to be on (options: 1=on, 0=off, T=Toggle, P=Pulse) Front panel commands FP,BEEP,2 Generate 2 beeps FP,CW,CQDX Send CQDX in CW FP,VOL,50 Set the tone generator to a volume of 50 in a range from 0 to 255 FP,LCD,2,5,HELLO Tell the front panel processor to display the string HELLO on line 2 character position 5 FP,LCD,CLS Clear LCD screen

16 STANDARD COMMANDS ALL DEVICES Administrative Commands Command Example Definition SETADDR,<string> //SETADDR,5 Sets the network address for the RadioRouter to <string>, where <string> is a single, printable ASCII character. The default address for the RadioRouter is 9 While the address character can be any single character we recommend the following guidelines for address programming. 0 Reserved for the controlling PC 1 Reserved for a hardware control head 2 9 Recommended for all user devices A Z Also available for user devices * Reserved for broadcast All others Punctuation is reserved for system use. Avoid lower case letters to prevent confusion and accidental upper case translation. Command Example Definition REBOOT //REBOOT This is a soft reboot command will re-start the RadioRouter. Command Example Definition PING //PING This will return the name, address and type of connected device. Command Example Definition ROLLCALL //ROLLCALL This will return the name, address and type of connected device from all devices on the network. Each device will wait for a short period of timebefore sending its response. The delay time is calculated based on the device address. For example an address of 5 will wait 5 * 100 ms = 500 ms. This will minimize or avoid collisions. Command Example Definition STATUS //STATUS This will return useful status information about the connected device.

17 Appendix Device Specific Commands

18 DEVICE SPECIFIC COMMANDS - Station Controller Get Station Controller Status Command STATE Example //STATE Will return the state of the station controller Return payload format UPDATE,1,SC1,RY,DI,Vin,Vout,current,Fwd,Rev,Max,Sense,RefVoltage,AN1,AN2,temp 1 Device address 1 SC1 Device type SC1 (Station Controller 1) RY Relay state (Relay 1 Relay 5) DI Digital inputs 1 and 2 Vin DC power relay voltage input Vout DC power relay voltage output Current DC current flowing through the DC power relay Fwd Forward RF power Rev Reflected RF power Max Max voltage from directional coupler Sense Directional coupler sense voltage RefV Reference voltage to be calibrated out of the RF power measurements AN1,2 User analog voltage input 0-30VDC each Temp Temperature in degrees F from the digital temperature probe Example UPDATE,1,SC1,11111,00,13.8,13.7,14,55,0,2.5,2.0,0.14,13.8,6.0,68 Turn on / off Relays Command RYx,y Example //RY1,1 Will turn relays on or off where x is the relay number 1 5 and y is the state (1=on, 0=off) Relay number (x) Relay 1 DC power control Relay 2 AC power control Relay 3 User relay 1 Relay 4 User relay 2 Relay 5 User relay 3 Relay state (y) 1 or on Relay on 0 or off Relay off P Pulse relay for 250 ms. T Toggle state

19 DEVICE SPECIFIC COMMANDS - RadioRouter RX mixer channel control Command MIX,<mask> Example //MIX,10X00000 Will turn on port 1, and turn off ports 2,4,5,6,7,8 Regardless of the current state port 3 will be unchanged Argument definition <mask> is a string of 8 characters that turn each mixer channel 1 8 on or off. 1 = port on 0 = port off X = do not change the current state of the channel Master receiver audio mixer volume Command VOL, <value> Example //VOL,100 Argument definition <value> is a number between 0 and 255 which will set the master volume. 0 = off and 255 is maximum volume. The default is typically 100 which is close to mid scale. Individual channel volume is set with the radio s volume control. Transmitter selection Command TXn (TX1, TX2, TX3, TX4) Example //TX1 Argument definition: none. Sets the focus of the transmitter board to transmitter 1 or 2 when using one transmitter board or between 1, 2, 3, or 4 when using two transmitter boards. Speaker control Command SPEAKER,<value> Example //SPEAKER,ON Definition Enable / disable speaker output. <value> can be one of the following strings ON or 1 = speaker enabled OFF or 0 = speaker disabled

20 DEVICE SPECIFIC COMMANDS - RadioRouter Operating Mode Selection Command MODE,<value> Example //MODE,1 Sets operating mode of the RadioRouter. Argument definition <value> is one of the following options 1 = Mode 1. Control head or PC virtual control head control (default) 2 = Mode 2. OTRSP SO2R compatible mode. Notes on Mode Usage Mode 1 StationStack Control Head or Control Head Software This is typically used with a PC virtual control head program or a hardware control head using the StationStack Control Protocol where the packets are either fully addressed (/A) type or direct (//) type. For example a direct command to turn on Rx port 1 would be //MIX,1XXXXXXX Mode 2 OTRSP Logging Computer Program This is used when the RadioRouter is being controlled from a contesting program such as WinTest or WriteLog using the Open Two Radio Switching Protocol (OTRSP). This format does not use any packet framing characters, like /A01:. The OTRSP commands are sent in raw form. A command payload of TX1 to select transmitter 1 is simply sent as TX1 from the logging program. Setting the Mode Manually with the Reset and Mode buttons The mode can also be set at boot time with the Reset and Mode buttons found on the CPU or Tx boards. When the RadioRouter powers up, it will flash the Status LED a few times indicating that power has been applied and it is going through its boot process. After about 5 seconds, the RadioRouter is booted and ready to be used. At this point the Status LED goes to a solid green indicating the normal on condition. To set the mode manually with these buttons, hold the Mode button down, then press the Reset button briefly, still holding the Mode button. After the Status LED initially flashes, a few seconds later the Status LED will then blink once. If you want to boot in mode 1, you have two seconds to let go of the Mode button at that point. If you want to boot in mode 2, continue holding down the Mode button. After the Status LED blinks twice, let go of the mode button. In a few seconds, the Status LED will send either the number 1 ( ) or the number two ( ) in CW indicating which mode was selected. Timing is critical. If you bounce you finger on one of the buttons or hold it down too long, you may set the wrong mode. Repeat the process to set it to the mode you want. Every time the mode is set, it will be stored in flash memory and when the device is re-booted, it will come up in the mode that was last set.

21 DEVICE SPECIFIC COMMANDS - RadioRouter Headphone output control Command PHONES,<value> Example //PHONES,ON Definition Enable / disable headphone output. <value> can be one of the following strings ON or 1 = headphones enabled OFF or 0 = headphones disabled OTRSP Compatible Commands This is an open standard protocol used to control hardware devices in an SO2R contest station. OTRSP is the Open Two Radio Switching Protocol. The RadioRouter supports the most common basic OTRSP commands that are used on popular logging programs including WinTest, W1MM and WriteLog. Supported OTRSP commands RX1 Listen to radio 1 RX1S Listen to radio 1 RX2 Listen to radio 2 RX2S Listen to radio 2 RX1R Listen to both 1 & 2 RX2R Listen to both 1 & 2?RX Returns the mode set TX1 Set tx focus to radio 1 TX2 Set tx focus to radio 2?TX Returns radio with focus?name Sets the name of the device to TEXT (up to 32 chars)?fw Returns the firmware version Command Example Definition PHONES,<value> //PHONES,ON Enable / disable headphone output. <value> can be one of the following strings ON or 1 = headphones enabled OFF or 0 = headphones disabled

22 DEVICE SPECIFIC COMMANDS - Control Head Control Head Commands These are commands that the master controlling device will respond to. The control head can be a physical control head or a virtual control head implemented in software on a PC. In either case, they should behave the same way. Command Example Definition LCD,<row>,<column>,<string> //LCD,2,5,W1AW The RadioRouter assumes an LCD of at least 2 rows and 20 columns. This command displays the text string W1AW <string> on row 2 starting at character position 5. The LCD command also responds to a special command CLS in the format //LCD,CLS The CLS argument will clear the LCD display screen Command Example Definition LED,<led_mask> //LED, 1100XXGGRRYY This command will set the state of the control head LEDs. The RadioRouter assumes 12 LED are available. The <led_mask> is a 12 character string that represents the state of each LED from #1 to #12. Each character can be one of the following values. Character Meaning What is displayed 1 On Green 0 <zero> Off Off G On Green O <letter O> Off Off R Red Not used Y Yellow Not used X No change What ever the previous state was Examples LED, Turn on LEDs 1-4 and 9-12, turn off 5-8 LED,GGGRRRYYYOOO Set LED 1-3 Green, 4-6 Red, 7-9 Yellow, off LED,XXXXGXXXXXXX Set LED 5 on, don t touch the others. Note, trailing X s can be left off and the control head will assume they are X. Example LED,XX1 is the same as LED,XX1XXXXXXXXX

23 GPIO-2 STATION CONTROLLER SUPPORTED COMMANDS Relay control Command RY,<mask> Example //RY,10X00000 Will turn on relay 1, and turn off relays 2,4,5,6,7,8 Regardless of the current state relay 3 will be unchanged Argument definition <mask> is a string of 8 characters that turn each realy 1 8 on or off. 1 = relay on 0 = relay off X = do not change the current state of the relay Individual realy Command RYn,<state> Example //RY3,1 Argument definition Where n is a value of 1..8 mapped to relays 1..8 <state> is one of the values 0, 1, T, P. 0 = relay off 1 = relay on T = toggle state (flip on to off and off to on) P = pulse. Assuming the relay is normally off, the relay is set off then pulsed on for 250 ms. then set to the off state. Get the state of the GPIO board Command STATE Example //STATE Argument definition: none. Returns the current state of the GPIO board in the format: //STATE, ,0000,13.8,13.8,13.8,13.8 In this example represents the state of the relays #1.. # represents the state of the digital inputs #1.. #4 13.8, 13.8, 13.8, 13.8 represents the values of the A to D inputs #1.. #4 State will also send the following additional commands to the master control unit or program: //LED, See //LED command for details //LCD,1,1,TEXT See //LCD command for details //LCD,2,1,TEXT See //LCD command for details //TAGLINE,TEXT See //TAGLINE command for details

24 GPIO-2 STATION CONTROLLER SUPPORTED COMMANDS LED command This command is send from the GPIO board back to the master controlling device. The master can be a PC program, iphone, or hardware control head. This command updates the state of the LEDs on the master control panel or control head. Command LED,<mask> Example //LED,10GYYRX00000 The mask maps to LED s #1.. #12 <mask> is a string of 12 characters that turn each LED on and off 1 or G = Turn LED on with a green color 0 (zero) = Turn LED off R = Turn LED on with a red color Y = Turn LED on with a yellow color X = do not change the current state of the LED LCD command This command sends a text string to the master control program or control head to set characters to be displayed on the LCD screen. Command LCD,line,col,text Example //LCD,1,5,Hello Argument definition line is the line 1 or 2 where the text will appear col is the column where the text will start typically between 1 and 16 text is the text string that will be written on line starting in column col Trailing spaces are truncated. Any text written past the end of the display are lost Tagline Command TAGLINE Example //TAGLINE,W1AW Tagline places the text string on the control panel s tagline usually near the top of the display. This is provided for users to annotate a title to the control panel to personalize the display. Typically used for callsigns, names, or the purpose of the control head such as Antenna Controller

25 GPIO-2 STATION CONTROLLER SUPPORTED COMMANDS Autoupdate Command AUTOUPDATE,<value> Example //AUTOUPDATE,ON This command turns the autoupdate mode on and off. When on, the autoupdate will send the GPIO board state at a regular interval defined by the INTERVAL command. The values are 1 or ON = turn on autoupdate 0 or OFF = turn off autoupdate Interval This command determines the interval at which the GPIO board update is sent to the master controller. Command INTERVAL,<value> Example //INTERVAL,30 The interval is a number representing approximate number of seconds between updates. Invert digital inputs Command INVERTN,value Example //INVERT2,ON This command will invert the state of a digital input so when it is represented to the master controller a high logic input (+5v) is represented as an off state (RED) as opposed to the normal condition where a logic 1 (+5v) is high and therefore GREEN. Other useful commands //PING Used to pin the GPIO board to make sure it is alive. Ping will return the device address as well. //ROLLCALL Same as ping but with a delayed response based on the device address to allow multiple devices to respond on the network. //SETADDR,x Set the devices network address to x //ECHO,x Return the exact string x //HELP Display the help screen //STATIS Human readable system status.

Sierra Radio Systems. Mesh Data Network. Reference Manual. Version 1.0

Sierra Radio Systems. Mesh Data Network. Reference Manual. Version 1.0 Sierra Radio Systems Mesh Data Network Reference Manual Version 1.0 Contents Hardware Xbee backpack board Xbee base station Xbee firmware configuration RS485 network power injector Protocol specification

More information

Sierra Radio Systems. RadioRouter. User Guide. Version 1.1

Sierra Radio Systems. RadioRouter. User Guide. Version 1.1 Sierra Radio Systems RadioRouter User Guide Version 1.1 Contents Overview Receiver board Rx hardware assembly instructions Transmitter board Junction box Tx hardware assembly instructions Control protocol

More information

Sierra Radio Systems. Station Controller. User Guide. Version 1.1

Sierra Radio Systems. Station Controller. User Guide. Version 1.1 Sierra Radio Systems User Guide Station Controller Version 1.1 Welcome HamStack GPIO Board Reference Manual Revision 1.0 2011 George Zafiropoulos, KJ6VU and John Best, KJ6K This guide provides a broad

More information

GPIO-2 Board and Station Controller Firmware

GPIO-2 Board and Station Controller Firmware Sierra Radio Systems User Guide GPIO-2 Board and Station Controller Firmware Version 2.0 Welcome HamStack StationController and GPIO Board Reference Manual Revision 2.0 2011 George Zafiropoulos, KJ6VU

More information

Dual Serial Shield User Manual

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

More information

By Ambuj Varshney & Akshat Logar

By Ambuj Varshney & Akshat Logar By Ambuj Varshney & Akshat Logar Wireless operations permits services, such as long range communications, that are impossible or impractical to implement with the use of wires. The term is commonly used

More information

rdczbk User Manual ZigBee to RS-232 / RS-485 Converter

rdczbk User Manual ZigBee to RS-232 / RS-485 Converter 1. Product Overview rdczbk User Manual ZigBee to RS-232 / RS-485 Converter Robust DataComm Pte Ltd The rdczbk is basically a XBee / XBee Pro carrier board that provides either RS-485 or RS-232 connectivity

More information

L13. Communicating wireless by XBee modules

L13. Communicating wireless by XBee modules L13. Communicating wireless by XBee modules 1. Introduction XBee and XBee-PRO ZB embedded RF modules provide cost-effective wireless connectivity to devices in ZigBee mesh networks. With the PRO Feature

More information

Sierra Radio Systems. WiFly Configuration. Quick Reference. Version 1.0

Sierra Radio Systems. WiFly Configuration. Quick Reference. Version 1.0 Sierra Radio Systems WiFly Configuration Quick Reference Version 1.0 Hardware Connections SERIAL PORT CONNECTIONS FOR WIFLY DEVICE PROGRAMMING The serial port on the WiFly device provides a 3.3v logic

More information

Dual Interface LCD Display Controller

Dual Interface LCD Display Controller Dual Interface LCD Display & Keypad Controller Product specification Nov 2013 V0.a ByVac Page 1 of 11 Contents 1. Introduction... 3 2. Features... 3 3. BV4618, Comparison... 3 3.1.1. BV4618... 3 3.1.2....

More information

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform.

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform. Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform www.sierraradio.net www.hamstack.com Topics Introduction Hardware options Software development HamStack project

More information

DEV-1 HamStack Development Board

DEV-1 HamStack Development Board Sierra Radio Systems DEV-1 HamStack Development Board Reference Manual Version 1.0 Contents Introduction Hardware Compiler overview Program structure Code examples Sample projects For more information,

More information

Sierra Radio Systems. Digital Compass. Reference Manual. Version 1.0

Sierra Radio Systems. Digital Compass. Reference Manual. Version 1.0 Sierra Radio Systems Digital Compass Reference Manual Version 1.0 Contents Digital compass board RS485 power injector For more information, go to the Sierra Radio Systems web site at www.sierraradio.net

More information

USB Wireless Bridge USERS MANUAL R02

USB Wireless Bridge USERS MANUAL R02 USB Wireless Bridge USERS MANUAL R02 Contents Overview... 3 Specifications... 3 Performance... 3 Power Requirements... 4 Mechanical... 4 Pinout and Wiring... 5 Operation... 5 Standard Operation... 5 LED

More information

Quick Start Guide. ZR1x/ZR2x. Wireless Single / Dual Relay Controllers. Copyright 2012 National Control Devices. All Rights Reserved.

Quick Start Guide. ZR1x/ZR2x. Wireless Single / Dual Relay Controllers. Copyright 2012 National Control Devices. All Rights Reserved. Quick Start Guide ZR1x/ZR2x Wireless Single / Dual Relay Controllers Copyright 2012 National Control Devices All Rights Reserved. NOTICE: Portions of this Manual REQUIRE Internet Access Page 2 Quick Start

More information

TRAINING GUIDE LEVEL 3 MODBUS WRITE IMPORT COMMAND

TRAINING GUIDE LEVEL 3 MODBUS WRITE IMPORT COMMAND OleumTechTM TRAINING GUIDE LEVEL 3 MODBUS WRITE IMPORT COMMAND MUST BE FAMILIAR WITH LEVEL 1 TRAINING MATERIALS BEFORE MOVING FORWARD Doc ID# 80-6010-001b TABLE OF CONTENTS 1. WHAT IS NEW WRITE IMPORT

More information

A-Series Controller & Logic Boards

A-Series Controller & Logic Boards A-Series Controller & Logic Boards A-Series Controller General Port Connection Diagram 1. For LAN communication connect the Ethernet cable from the programming PC or network switch to the LAN port at the

More information

MB40 & MB45 MODBUS TCP/IP Gateway Handbook

MB40 & MB45 MODBUS TCP/IP Gateway Handbook MB40 & MB45 MODBUS TCP/IP Gateway Handbook Version 1.2 29 July 2014 Environdata Australia Pty Ltd 42-44 Percy Street Warwick Queensland 4370 Australia Phone: (07) 4661 4699 Fax: (07) 4661 2485 International

More information

ICRM SER User s Guide

ICRM SER User s Guide ICRM- 915- SER User s Guide Introduction The ICRM- 915- SER is a high performance serial wireless modem designed to provide reliable long- range communications for SCADA systems. It is supplied in a compact

More information

User Manual A08. User Manual

User Manual A08. User Manual A08 TABLE OF CONTENTS TABLE OF CONTENTS... 1 1. INTRODUCTION... 2 1.1. Key Features... 3 1.2. OS Requirement... 4 1.3. Specification... 4 1.4. Packing List... 4 2. OVERVIEW... 5 2.1. LED Definition...

More information

XBee Starter Kit Getting Started Guide

XBee Starter Kit Getting Started Guide XBee 802.15.4 Starter Kit Getting Started Guide 90002160_A 6/20/2012 2012 Digi International Inc. All rights reserved. Digi, Digi International, the Digi logo, the Digi web site, a Digi International Company,

More information

Elchin Mammadov. Overview of Communication Systems

Elchin Mammadov. Overview of Communication Systems Overview of Communication Systems About Me Studying towards the Masters of Applied Science in Electrical and Computer Engineering. My research area is about implementing a communication framework (software

More information

HDLC-ETH. Serial Ethernet Converter. Rev. Dec 20, Datasheet. Website:

HDLC-ETH. Serial Ethernet Converter. Rev. Dec 20, Datasheet.   Website: HDLC-ETH Serial Ethernet Converter Rev. Dec 20, 2017 HDLC-ETH Datasheet Email: yacer@yacer.cn Website: www.yacer.cn 1 Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Applications... 3 1.4 Technical

More information

Medium parts count, through-hole components (with exception of optional surface mount MAC IC).

Medium parts count, through-hole components (with exception of optional surface mount MAC IC). Introduction The E1.31 DMX Bridge is an interface intended to be used as part of a system to operate a lighting display that consists of DMX or Renard controlled dimmers. To form a complete system, the

More information

Z-2400-RB/TCP TURBO Wireless Data Links Using ZIGBEE For MicroScan Protocols.

Z-2400-RB/TCP TURBO Wireless Data Links Using ZIGBEE For MicroScan Protocols. Z-2400-RB/TCP TURBO Wireless Data Links Using ZIGBEE For MicroScan Protocols. Installation Guide. Z-2400-Base/Remote Turbo Installation Guide Index: Description. Page 3 Ordering Information. Page 3 Specifications.

More information

CG Antenna GW 1000 APRS TOTAL SOLUTION v1.2.1 User Manual

CG Antenna GW 1000 APRS TOTAL SOLUTION v1.2.1 User Manual CG Antenna GW 1000 APRS TOTAL SOLUTION v1.2.1 User Manual Last modified: 12 Jul 2016 1 Table of Contents 1. Introduction 2. Connectivity 3. Front indicators 4. Software installation 5. Basic configuration

More information

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

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

More information

IRIS-Config-Manual-1a

IRIS-Config-Manual-1a Configuration Manual Table of contents The IRIS Base module 1 The IRIS system 2 The IRIS configuration program 3 Project 3 Create a project 3 Unit 3 Create a unit 3 Delete a unit 4 Export 4 Import 4 Setup

More information

DIGWDF Ren-W Universal Assembly Guide

DIGWDF Ren-W Universal Assembly Guide DIGWDF Ren-W Universal Assembly Guide Overview Before starting, be sure to read through the entire guide to familiarize yourself with the parts and parts locations. In many cases, you may not need to install

More information

zigb232 & zigb485 User Guide User Guide TANGENT TECHNOLABS

zigb232 & zigb485 User Guide User Guide TANGENT TECHNOLABS TANGENT TECHNOLABS Device: Power Supply (9-36V) Yellow LED (Traffic) Green LED (Router Device) Blue LED (Coordinator Device) RS232/485 Connector Power Indication LED Technical Specifications: Input Power:

More information

Specification. Current Consumption Range 8m * Rotational Angle +/- 50 degrees * Shear Angle +/- 40 degrees *

Specification. Current Consumption Range 8m * Rotational Angle +/- 50 degrees * Shear Angle +/- 40 degrees * HX11TR Ultrasonic Positioning Device The HX11TR can be set up to operate as a ultrasonic signal receiver, ultrasonic transmitter, ultrasonic caller and ultrasonic transponder. It is small size and economical.

More information

MODBUS RTU I/O Expansion Modules - Models C267, C277, and C287. Installation and Operations Manual Section 50

MODBUS RTU I/O Expansion Modules - Models C267, C277, and C287. Installation and Operations Manual Section 50 MODBUS RTU I/O Expansion Modules - Models C267, C277, and C287 Installation and Operations Manual 00-02-0651 09-01-09 Section 50 In order to consistently bring you the highest quality, full featured products,

More information

NATIONAL CONTROL DEVICES Fusion Remote Access Quick Start Guide

NATIONAL CONTROL DEVICES Fusion Remote Access Quick Start Guide NATIONAL CONTROL DEVICES Fusion Remote Access Quick Start Guide N A T I O N A L C O N T R O L D E V I C E S Fusion Remote Access Quick Start Guide National Control Devices, LLC PO Box 455 Osceola, MO 64776

More information

Overview RFSv4.3 is a RF module providing easy and flexible wireless data transmission between devices. It is based on AVR Atmega8 with serial output which can be interfaced directly to PC. Features 2.4

More information

Testing was conducted in order to compare XB3-24 homogenous, XB3-24 / XB24 mixed and XB24 homogenous network performance.

Testing was conducted in order to compare XB3-24 homogenous, XB3-24 / XB24 mixed and XB24 homogenous network performance. XB3-24 Performance vs XB24 Performance A general performance comparison of XB3-24 based radio modules vs Series 1 XB24 based radio modules running DigiMesh and 802.15.4 protocols. The XB24 based module

More information

WIR-1386 / WIR-1186M Long Range 865MHz 867MHz RF Wireless Module with WIR-METERING Mesh Stack

WIR-1386 / WIR-1186M Long Range 865MHz 867MHz RF Wireless Module with WIR-METERING Mesh Stack WIR-1386 / WIR-1186M Long Range 865MHz 867MHz RF Wireless Module with WIR-METERING Mesh Stack info@wiredin.co.in Page 1 of 13 Table of Contents Features... 5 Pin-outs and Pin description... 5 Specifications...

More information

INDEX. Document Name : User Manual for SC10EJ Serial to Ethernet Converter

INDEX. Document Name : User Manual for SC10EJ Serial to Ethernet Converter Document Name : User Manual for SC10EJ Serial to Ethernet Converter Page 1 of 10 INDEX 1. Technical Specifications 1 2. Modes of Operation 1 3. Configuring the SC10 EJ : Through Serial Port 2 a. Configuring

More information

BV4615. Dual Interface Zero Keypad. Product specification. Dec 2009 V0.a. ByVac Page 1 of 11

BV4615. Dual Interface Zero Keypad. Product specification. Dec 2009 V0.a. ByVac Page 1 of 11 Product specification Dec 2009 V0.a ByVac Page 1 of 11 Contents 1. Introduction...3 2. Features...3 3. Physical Specification...3 3.1. Serial connector...3 3.2. Multiple Devices...4 3.3. I2C...4 4. Output

More information

Sierra Radio Systems. HamStack. Project Board Reference Manual V1.0

Sierra Radio Systems. HamStack. Project Board Reference Manual V1.0 Sierra Radio Systems HamStack Project Board Reference Manual V1.0 Welcome HamStack Project Board Reference Manual Revision 1.0.3 2011 George Zafiropoulos, KJ6VU and John Best, KJ6K This guide provides

More information

BV4109. Serial LCD Controller. Product specification November ByVac 2006 ByVac Page 1 of 12

BV4109. Serial LCD Controller. Product specification November ByVac 2006 ByVac Page 1 of 12 Product specification November 2012 ByVac 2006 ByVac Page 1 of 12 IASI-LCD Module BV4108 Contents 1. Introduction...4 2. Features...4 3. Electrical interface...4 3.1. Serial...4 3.2. Factory...4 3.3. LCD

More information

Weeder Technologies. 90-A Beal Pkwy NW, Fort Walton Beach, FL

Weeder Technologies. 90-A Beal Pkwy NW, Fort Walton Beach, FL eeder Technologies 90-A Beal Pkwy NW, Fort Walton Beach, FL 32548 www.weedtech.com 850-863-5723 Analog Input Module This product is Obsolete due to the main A/D chip which is no longer being manufactured.

More information

Introduction to WiFi Networking. Training materials for wireless trainers

Introduction to WiFi Networking. Training materials for wireless trainers Introduction to WiFi Networking Training materials for wireless trainers Goals The goal of this lecture is to introduce 802.11 family of radio protocols 802.11 radio channels wireless network topologies

More information

D-STAR Review & Final Exam

D-STAR Review & Final Exam Page 1 of 8 D-STAR Review & Final Exam Summary This lesson consists of a selection of items from the review sections of Lessons #1 - #9. The Final Exam consists of twenty questions selected from the individual

More information

MP3 Trigger v2 User Guide

MP3 Trigger v2 User Guide Overview The MP3 Trigger v2 is a versatile, low-cost, low-power embedded audio unit that plays MP3 tracks directly from a FAT16-formatted microsd flash card to a stereo line-level 1/8 output jack, supporting

More information

ECAN-240. (Modbus TCP to 2-port CAN Bus Gateway User manual) ECAN-240 Modbus TCP to 2-port CAN Bus Gateway User Manual, Version 1.0.

ECAN-240. (Modbus TCP to 2-port CAN Bus Gateway User manual) ECAN-240 Modbus TCP to 2-port CAN Bus Gateway User Manual, Version 1.0. ECAN-240 (Modbus TCP to 2-port CAN Bus Gateway User manual) ECAN-240 Modbus TCP to 2-port CAN Bus Gateway User Manual, Version 1.0.0 Page: 1 Table of Contents Table of Contents -----------------------------------------------------------------------------2

More information

BV4505. IASI-Keypad Controller. Product specification. January 2009 V0.a. ByVac Page 1 of 13

BV4505. IASI-Keypad Controller. Product specification. January 2009 V0.a. ByVac Page 1 of 13 Product specification January 2009 V0.a ByVac Page 1 of 13 Contents 1. Introduction...3 2. Features...3 3. Electrical Specification...3 3.1. Keypad Interface...3 4. Key Values Returned...3 5. Factory Reset...3

More information

PWR. Power Module Slots

PWR. Power Module Slots INSTRUCTION MANUAL ETHERNET INTERFACE MODULE (Modbus/TCP) MODEL BEFORE USE... Thank you for choosing M-System. Before use, please check the contents of the package you received as outlined below. If you

More information

Setting the DCM Switches

Setting the DCM Switches 20 The device(s) connected to the DCM will help you determine the appropriate switch settings. Host Computer or Operator Interface Connection If you re using a host computer or operator interface as the

More information

DATA CONNECT ENTERPRISE

DATA CONNECT ENTERPRISE DATA CONNECT ENTERPRISE User s Manual IG202T and IGV23 Modem Document Number 520-01005-001 Rev. A DATA CONNECT Contents Contents... iii Figures... iv Chapter 1 Introduction... 5 Features...6 Applications...7

More information

XBee-PRO 900HP Development Kit Getting Started Guide

XBee-PRO 900HP Development Kit Getting Started Guide XBee-PRO 900HP Development Kit Getting Started Guide 90002172_A 7/26/2012 2012 Digi International Inc. All rights reserved. Digi, Digi International, the Digi logo, the Digi web site, a Digi International

More information

MIT Media Lab: XBee Workshop. Instructor: Rob Faludi

MIT Media Lab: XBee Workshop. Instructor: Rob Faludi MIT Media Lab: XBee Workshop Instructor: Rob Faludi Plan for Today XBees Serial Terminals Addressing Basic Config Chat Project I/O Mode Arduino & XBee Workshop, Q&A Student Introductions Name, where you

More information

HDLC-USB. Portable Protocol Converter. Rev. Dec 25, Datasheet. Website:

HDLC-USB. Portable Protocol Converter. Rev. Dec 25, Datasheet.   Website: HDLC-USB Portable Protocol Converter Rev. Dec 25, 2017 HDLC-USB Datasheet Email: yacer@yacer.cn Website: www.yacer.cn 1 Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Applications... 3 1.4 Technical

More information

Data Communication. Introduction of Communication. Data Communication. Elements of Data Communication (Communication Model)

Data Communication. Introduction of Communication. Data Communication. Elements of Data Communication (Communication Model) Data Communication Introduction of Communication The need to communicate is part of man s inherent being. Since the beginning of time the human race has communicated using different techniques and methods.

More information

SCI-2144 SYSTEM CONTROL INTERFACE MODULE OPERATOR S MANUAL

SCI-2144 SYSTEM CONTROL INTERFACE MODULE OPERATOR S MANUAL SCI-2144 SYSTEM CONTROL INTERFACE MODULE OPERATOR S MANUAL SIGMA ELECTRONICS, INC. P.O. Box 448 1027 COMMERCIAL AVENUE EAST PETERSBURG, PA 17520 (717) 569-2681 SCI-2144 CONTENTS PAGE INTRODUCTION 2 RS-232

More information

NETAFIM WILL NOT ACCEPT RESPONSIBILITY FOR DAMAGE RESULTING FROM THE USE OF NETAFIM'S PRODUCTS OR THE USE OF THIS MANUAL.

NETAFIM WILL NOT ACCEPT RESPONSIBILITY FOR DAMAGE RESULTING FROM THE USE OF NETAFIM'S PRODUCTS OR THE USE OF THIS MANUAL. [Type text] COPYRIGHT 2011, NETAFIM NO PARTS OF THIS PUBLICATION MAY BE REPRODUCED, STORED IN AN AUTOMATED DATA FILE OR MADE PUBLIC IN ANY FORM OR BY ANY MEANS, WHETHER ELECTRONIC, MECHANICAL, BY PHOTOCOPYING,

More information

Amarjeet Singh. January 30, 2012

Amarjeet Singh. January 30, 2012 Amarjeet Singh January 30, 2012 Website updated - https://sites.google.com/a/iiitd.ac.in/emsys2012/ Lecture slides, audio from last class Assignment-2 How many of you have already finished it? Final deadline

More information

LCM-200/400 Datasheet

LCM-200/400 Datasheet LCM-200/400 Low-Power Embedded Communication Module Rev. Dec 26, 2017 LCM-200/400 Datasheet Email: yacer@yacer.cn Website: www.yacer.cn 1 Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Applications...

More information

CH-100 Internet HUB Controller

CH-100 Internet HUB Controller CH-100 Internet HUB Controller Instruction Manual Computer Automation Technology Inc. 4631 N.W. 31st. Avenue, Suite 142 Fort Lauderdale, Florida 33309 Phone: 954 978-6171 Fax: 561-488-2894 Internet: www.catauto.com

More information

SST-2450 Wireless Modem User s Manual

SST-2450 Wireless Modem User s Manual SST-2450 Wireless Modem User s Manual Warranty All products manufactured by ICP DAS are warranted against defective materials for a period of one year from the date of delivery to the original purchaser.

More information

iopro Mirrored IO System

iopro Mirrored IO System Ph: (877) 343-8467 Fax: (800) 303-5381 Email: info@ioselect.com iopro Mirrored IO System Quick Start Guide (Ver. 6) www.ioselect.com Page 1 Introduction This document will cover how to use the iopro family

More information

Troubleshooting CHAPTER

Troubleshooting CHAPTER CHAPTER 3 This chapter provides troubleshooting procedures for basic problems with the access point. For the most up-to-date, detailed troubleshooting information, refer to the Cisco Technical Support

More information

EGW1-IA3-MB User s Manual

EGW1-IA3-MB User s Manual www.exemys.com Rev. 0 1 Products are in constant evolution to satisfy our customer needs. For that reason, the specifications and capabilities are subject to change without prior notice. Updated information

More information

DUCM Hardware. Niobrara Research & Development Corporation P.O. Box 3418 Joplin, MO USA

DUCM Hardware. Niobrara Research & Development Corporation P.O. Box 3418 Joplin, MO USA DUCM Hardware Manual DUCM Hardware Installation Manual This manual covers the DUCM hardware features and installation procedures. Effective: May 29, 2015 Niobrara Research & Development Corporation P.O.

More information

XBee ZigBee SMT RF Module Development Kit Getting Started Guide

XBee ZigBee SMT RF Module Development Kit Getting Started Guide XBee ZigBee SMT RF Module Development Kit Getting Started Guide 90002013_D 5/8/2013 2013 Digi International Inc. All rights reserved. Digi, Digi International, the Digi logo, the Digi web site, a Digi

More information

Getting Connected (Chapter 2 Part 4) Networking CS 3470, Section 1 Sarah Diesburg

Getting Connected (Chapter 2 Part 4) Networking CS 3470, Section 1 Sarah Diesburg Getting Connected (Chapter 2 Part 4) Networking CS 3470, Section 1 Sarah Diesburg Five Problems Encoding/decoding Framing Error Detection Error Correction Media Access Five Problems Encoding/decoding Framing

More information

HDLC-PCIE. Synchronous Serial Card. Rev. Dec 22, Datasheet. Website:

HDLC-PCIE. Synchronous Serial Card. Rev. Dec 22, Datasheet.   Website: HDLC-PCIE Synchronous Serial Card Rev. Dec 22, 2017 HDLC-PCIE Datasheet Email: yacer@yacer.cn Website: www.yacer.cn 1 Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Driver Support... 3 1.4 Applications...

More information

RAD XD and RAD XD-WM a/b/g Transceiver with Serial Link Quick Start Guide

RAD XD and RAD XD-WM a/b/g Transceiver with Serial Link Quick Start Guide RAD-80211-XD and RAD-80211-XD-WM 802.11a/b/g Transceiver with Serial Link Quick Start Guide 1 This Quick Start Guide is intended to provide adequate information necessary to get a functional system operating.

More information

BV4531U. I2C or Serial 6 Way Relay

BV4531U. I2C or Serial 6 Way Relay BV4533 Date February 2018 11 Feb. 2018 Firmware Revision 1.0.4 Preliminary 1.1.0 Serial Updated I2C or Serial 6 Way Relay 3 Sep. 2018 1.1.0 I2C corrections, trigger is not used Introduction This is an

More information

HRM-0800 Instruction Manual

HRM-0800 Instruction Manual HRM-0800 Instruction Manual Table of Contents 1 Highway Addressable Remote Transducer (HART ) 4 2 General Specifications 5 3 Dimensions: 6 4 General Description 7 4.1 Introduction 7 4.2 Purpose 8 4.3 Functions

More information

DRF1605H Zigbee Module 1.6km Transfer CC2530 Wireless Module UART to Zigbee

DRF1605H Zigbee Module 1.6km Transfer CC2530 Wireless Module UART to Zigbee DRF1605H Zigbee Module 1.6km Transfer CC2530 Wireless Module UART to Zigbee Description 100% Brand new The Advantage: 1, NetWork creation automatically: after power on, the Zigbee network can create automatically

More information

BT-22 Product Specification

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

More information

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

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

More information

WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH

WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH WIRELESS MESH NETWORKING: ZIGBEE VS. DIGIMESH Mesh networking is a powerful way to route data. This methodology

More information

Wireless and WiFi. Daniel Zappala. CS 460 Computer Networking Brigham Young University

Wireless and WiFi. Daniel Zappala. CS 460 Computer Networking Brigham Young University Wireless and WiFi Daniel Zappala CS 460 Computer Networking Brigham Young University Wireless Networks 2/28 mobile phone subscribers now outnumber wired phone subscribers similar trend likely with Internet

More information

Appendix E External Control of CP650

Appendix E External Control of CP650 Appendix E The CP650 can be controlled by devices connected to the RS-232 serial data connector, or to the remotes connector located on the rear of the CP650. This appendix is for use by customers who

More information

DatraxRF Spread Spectrum Wireless Modem

DatraxRF Spread Spectrum Wireless Modem DatraxRF Spread Spectrum Wireless Modem Overview The DatraxRF 12, 96, and 192 modules are 100-milliwatt, frequency-hopping wireless modules that allow wireless communication between equipment using a standard

More information

LCM-160. Low-Power Embedded Communication Module. Rev. Dec 26, LCM-160 Datasheet. Website:

LCM-160. Low-Power Embedded Communication Module. Rev. Dec 26, LCM-160 Datasheet.   Website: LCM-160 Low-Power Embedded Communication Module Rev. Dec 26, 2017 LCM-160 Datasheet Email: yacer@yacer.cn Website: www.yacer.cn 1 Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Applications...

More information

EWAVE Inc Gracefield Ln. Dallas, Texas (972)

EWAVE Inc Gracefield Ln. Dallas, Texas (972) EWAVE Inc. 7419 Gracefield Ln. Dallas, Texas 75248 (972) 248-2931 www.electrowave.com STAMPER User s Manual Version 1.0 Ewave Radio Modems covered in this manual: STAMPER INTRODUCTION... 3 1.1 FEATURES

More information

Bluetooth Serial Bridge

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

More information

USER S MANUAL. PH485Ex1. #1 RS-485 Serial Port to Ethernet, Terminal Server/Client. Doc No: PH485Ex1-UM-001 IPEX. (IP Electronix)

USER S MANUAL. PH485Ex1. #1 RS-485 Serial Port to Ethernet, Terminal Server/Client. Doc No: PH485Ex1-UM-001 IPEX. (IP Electronix) USER S MANUAL PH485Ex1 Doc No: PH485Ex1-UM-001 #1 RS-485 Serial Port to Ethernet, Terminal Server/Client IPEX (IP Electronix) Contents 1. INTRODUCTION... 3 2. SPECIFICATIONS... 3 3. PACKAGE CHECKLIST...

More information

Product Specification

Product Specification Product Specification 15mm x 27mm Description One of the most capable Bluetooth modules available, the BT-21 Bluetooth OEM Module is designed for maximum flexibility. The BT-21 module includes 14 general

More information

5.1 Configure each Sensor Pin Rename Set Rules Export Data Switching Nodes... 25

5.1 Configure each Sensor Pin Rename Set Rules Export Data Switching Nodes... 25 Hi-Gate User Manual Hi-Gate User Manual Hi-Gate User Manual Contents 1 Introduction... 3 1.1 Hi-Gate... 3 1.1.1 What is Hi-Gate... 3 1.1.2 Specifications... 3 1.1.3 Features... 4 1.2 Hi-Node... 5 1.2.1

More information

WX3IN1+ (v1.27) APRS DIGIPEATER APRS I-GATE APRS-IS -> RF MESSAGES FORWARDING WEATHER STATION SERVER

WX3IN1+ (v1.27) APRS DIGIPEATER APRS I-GATE APRS-IS -> RF MESSAGES FORWARDING WEATHER STATION SERVER WX3IN1+ (v1.27) APRS DIGIPEATER APRS I-GATE APRS-IS -> RF MESSAGES FORWARDING WEATHER STATION SERVER WEB INTERFACE FOR ADMINISTRATION TELNET INTERFACE FOR MONITORING NTP SUPPORT FOR TIME SYNCHRONIZATION

More information

WRE2206. User s Guide. Quick Start Guide. Wireless N300 Range Extender. Default Details. Version 1.00 Edition 1, 01/2015

WRE2206. User s Guide. Quick Start Guide. Wireless N300 Range Extender. Default Details. Version 1.00 Edition 1, 01/2015 WRE2206 Wireless N300 Range Extender Version 1.00 Edition 1, 01/2015 Quick Start Guide User s Guide Default Details Web Address http://zyxelsetup OR http://192.168.1.2 www.zyxel.com User Name admin Password

More information

Propeller Activity Board (#32910)

Propeller Activity Board (#32910) 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

Wireless Transducer MOTOR PROTECTION ELECTRONICS, INC. INSTRUCTION MANUAL. (407) Phone: Website:

Wireless Transducer MOTOR PROTECTION ELECTRONICS, INC. INSTRUCTION MANUAL. (407) Phone: Website: Wireless Transducer INSTRUCTION MANUAL MOTOR PROTECTION ELECTRONICS, INC. 2464 Vulcan Road Apopka, Florida 32703 Phone: Website: (407) 299-3825 www.mpelectronics.com Operating Program Revision: 2 Revision

More information

Product Specification

Product Specification Product Specification Features Amp ed RF, Inc. Description 15mm x 27mm The added class 1 power, +18dBm, of the BT-11, gives this module one of the best ranges in the industry. It s completely pin compatible

More information

Serial Interface Module

Serial Interface Module OnQ 363737-01 Serial Interface Module DESCRIPTION The 363737-01 Serial Interface can be used with Model 925 or Model 1050 controller. It allows the controller to be connected to a personal computer or

More information

CS485. User s Manual. Version ZYPEX, Inc.

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

More information

STT41AS1 v7.0 FUNCTIONAL DESCRIPTION

STT41AS1 v7.0 FUNCTIONAL DESCRIPTION All things connected Snaptekk www.snaptekk.com The WiFi Wireless Ham Radio Coax Antenna Switch allows a single transceiver to switch between 4 antennas or 4 transceivers to switch to a single antenna.

More information

Logosol Joystick Node LS-731

Logosol Joystick Node LS-731 Features 2 and 3 axis models Travel ±20 deg Non contact hall effect joystick Mechanical MTBF 15,000,000 cycles 3 pushbuttons Up to 2 stick pushbuttons 8 LEDs Member of Logosol s distributed motion control

More information

[WIR-1286]868MHz LORA Wireless Module. Page 1. LORA 868MHz Wireless serial link [WIR-1286]

[WIR-1286]868MHz LORA Wireless Module.   Page 1. LORA 868MHz Wireless serial link [WIR-1286] [WIR-1286]868MHz LORA Wireless Module http://www.robokitsworld.com Page 1 Contents 1) Features:... 4 2) Block Diagram..... 3) Description:... 4 4) PIN Configurations... 4 5) Module Specifications:... 5

More information

Serial Communications

Serial Communications 1 Serial Interfaces 2 Embedded systems often use a serial interface to communicate with other devices. Serial Communications Serial implies that it sends or receives one bit at a time. Serial Interfaces

More information

SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL

SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL 2 1. INTRODUCTION 4 1.1 125 KHz RFID Systems 5 1.2 Evaluation Board Layout View

More information

Document Name: User Manual for SC10EK4 Serial to Ethernet Converter with 4 TCP Sockets. Index

Document Name: User Manual for SC10EK4 Serial to Ethernet Converter with 4 TCP Sockets. Index Document Name: User Manual for SC10EK4 Serial to Ethernet Converter with 4 TCP Sockets. Index Technical Specifications 1 Installation Procedure 1 LED Indications 2 Configuration Procedure Configuration

More information

WTDIO-M. eeder. Digital I/O Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies

WTDIO-M. eeder. Digital I/O 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 I/O Module FEATURES 14 I/O channels; individually configured for input or output. All inputs incorporate

More information

ZigBee Converter User s Manual

ZigBee Converter User s Manual ZigBee Converter User s Manual Warranty All products manufactured by ICP DAS are warranted against defective materials for a period of one year from the date of delivery to the original purchaser. Warning

More information

CARRIER SENSE MULTIPLE ACCESS (CSMA):

CARRIER SENSE MULTIPLE ACCESS (CSMA): Lecture Handout Computer Networks Lecture No. 8 CARRIER SENSE MULTIPLE ACCESS (CSMA): There is no central control management when computers transmit on Ethernet. For this purpose the Ethernet employs CSMA

More information

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

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

More information

Omega 4K/UHD Scaler for HDBaseT and HDMI with USB

Omega 4K/UHD Scaler for HDBaseT and HDMI with USB Omega 4K/UHD Scaler for HDBaseT and HDMI with USB The Atlona is an HDBaseT receiver and 4K/UHD scaler with a local HDMI input. Part of the Omega Series of integration products for modern AV communications

More information