E-Blocks Mobile Communications Bundle

Size: px
Start display at page:

Download "E-Blocks Mobile Communications Bundle"

Transcription

1 Page 1 Communications Bundle Cover Page

2 Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with the course it is recommended to update your version of Flowcode to the latest released version. This allows for the latest bug fixes and components to run on your machine. The latest version of Flowcode can be found by visiting the Matrix TSL website and clicking on the Flowcode page. Getting Started with Flowcode There is a free online course available for helping with getting started with learning Flowcode. This course covers basic principals through to designing your own programs and programming the devices. It is recommended that you take time to go through this course before proceeding with the bundle exercises to give you a better grasp of what the Flowcode program is doing. The online course is available from the learning centre on our website or by visiting the following address: Flowcode Examples A number of pre-made example files are available for download from the main Flowcode page on the Matrix TSL website. These files are also located on the Flowcode CD. Before the example files can be used you must first copy them into a folder on your hard drive. The example programs referenced in this bundle can be found at the following web address: Or by clicking the bundle manuals link from the Learning Centre area of our website. Flowcode Help There is a help file available that covers all the main features of Flowcode. This help file can be accessed by clicking the question mark icon in the main Flowcode toolbar or alternatively clicking the help menu and selecting contents. There are also help files available for each and every component in Flowcode which explain the functionality of the component and the component macros. The component help files can be found by selecting the component on the panel and the clicking the Help button in the properties toolbar. General Support Support for frequently encountered problems can be found online on our FAQ s site. Our online forums can also be used as a general discussion area or for help or advice.

3 Wiring & Testing Page 3 To setup your E-Blocks for use with the example programs you must perform the following actions: Remove the 16F88 Device from the EB006; Insert the 16F877A into the EB006; Connect up the E-Blocks as shown on the right. The RS232, and LCD E-Blocks all need to be connected to the +V on the EB006 via single core wire. The GSM modem has its own power supply which will also need to be connected. The GSM modem also requires a standard pay and go SIM card. Before you can begin you must install the driver for the EB006 using the ELSAM CD or by visiting the Matrix TSL website: The system can be tested by compiling and sending one of the example programs to the hardware. This is done by opening one of the example files in Flowcode and then clicking the compile to chip button. The example Flowcode files contain a correct configuration so you will not have to modify the configuration to allow them to run on the hardware. Any program you create from scratch will have to be configured as shown on the left. The configuration is specified by clicking the Chip -> Configure menu icon Flowcode and then if you need more options click the switch to expert config screen button. Example file 1 is a good test file as it allows a text message to be sent using the GSM modem. This confirms that the GSM modem is working with your SIM card and also that your SIM card has credit. Please note that the SIM card must be pay and go.

4 RS232 Component Page 4 The Flowcode RS232 component can be added to your program by finding the component in the Comms section of the Flowcode component toolbar. RS232 Component Icon Once the component has been added to your program you will find that the RS232 component icon has been added to your panel. The RS232 component properties page is laid out as shown on the left. The GSM modem requires hardware flow control to allow the data to wait until the microcontroller is available to process the incoming data. A hardware UART is recommended as this allows for hardware buffering of the incoming data. The software UART can be used if your hardware UART is unavailable. The GSM modem requires a baud of 9600 for communications to work correctly. The RS232 functionality is called in Flowcode by using a component macro icon. The functions available are as follows: Send Char Transmits a single 8-bit byte over the serial connection. Send String Transmits a number of 8-bit bytes in one transaction. Receive Char Checks to see if a single incoming byte is available. Returns the data if it is available or 255 if no data was available. Receive String Checks to see if a number of incoming bytes are available. Returns the data if it is available or a blank string if no data was available.

5 Example 1 Page 5 The component macro functions that go with the Flowcode RFID component may not all be suitable for your RFID device. Please refer to this list to see if a particular function is available for the device you are using. The recipient mobile phone number is specified at the start of the program by initializing an array of byte variables with the numeric data. The text content of the message is specified next in the program. The array must be large enough to allow for the complete contents of the message to be initialized. The number 32 represents an ASCII space character and the number 0 represents a string termination. A line feed would be a number 10 and a carriage return would be a number 13. The GSM modem uses a command terminology known as AT commands. The AT commands always start with the characters A and T to bring the remote device to attention. Sending a number 13 to represent a carriage return has the effect of allowing the AT command to be executed on the GSM modem. Here we simply send the command AT. If the command was successful then we should receive an OK back from the modem using the GSM_RCEVE macro. The GSM_DELAY macro simply allows for a delay in between commands.

6 Example 1 Page 6 Example 1 starts up the GSM modem by sending some basic AT commands and collecting the response. The INIT_GSM macro is responsible for issuing the following start up commands. The first command is a simple AT which is used to ensure that the modem is present and communicating correctly. Next we send the command AT+CSMP which is responsible for defining the text mode parameter. The AT+CSDH command controls the default header in text mode. The AT+CMFG command defines the message format as text mode. Each command is terminated by issuing a number 13 to represent a carriage return and each command should be acknowledged by a message OK. Once we have set the modem up ready to send a text message we are ready to start the process of sending out the message details to the modem. The SEND_SMS macro is responsible for passing information to the GSM modem such as the phone number to send the message to as well as the message itself. The AT+CMGS command defines the recipient s mobile number as well as the data for the message. The following routine steps through the bytes of the phone number array passing each byte onto the modem. There is then a similar routine which is used to step through the bytes of the message until the end terminating 0 is detected. When all of the number and message data has been passed to the modem the message is automatically sent.

7 Example 2 Page 7 Exercise 2 is more advanced text message sending program which allows you to specify both the mobile phone number and the text data using the keypad E-Block. The Get_Phone_Number macro is used to collect a phone number into a byte array using the keypad E-Block. This array is exactly the same as shown in example 1 but this time we are creating a routine to allow the array to be populated rather then simply hard coding the array. The code shown on the left scans the keypad for a keypress and then checks to see if no keys are pressed 255 or if the keypress is the same as the previous keypress which means that the key is being held down. If the key is not being held down and there is a valid press then we check for the * or # keys being pressed. These keys have the functionality of finishing or resetting the numeric data entry process. Finally if none of the above are true then we know that we have a single data byte which can be added to the array.

8 Example 2 Page 8 When entering the data for the text message content there has to be a way of entering ASCII data. As the keypad only has numeric buttons we have implemented a routine similar to the routine used on a standard mobile phone. That is to map the ASCII alphabet characters onto the numeric keys. Multiple presses of a key in quick succession will act to step through the letters associated with that key allowing you to enter any amount of text you require. The letter association used by the keypad E-Block is shown on the image to the left. The number 0 can be used to insert a space into the message. The number 1 is used to insert a few standard non alphanumeric characters into your message such as full stops and commas. Again the star and hash keys are used to restart or end the text entry process. Once the phone number data buffer and the text message data buffer have been populated we use the same method as shown in example 1 to forward the data to the GSM modem and in turn send the message. Before the message is sent you will be asked to confirm the mobile number and the data that will be sent. This allows you to ensure that everything is correct before proceeding as we all know that SMS messages are not free. Pressing the # key allows the program to move onto the next stage. This program also shows the AT commands on the LCD E-Block as they are being fired out to the GSM modem. This helps you to see how the data you have entered plug into the commands that are then passed to the modem.

9 Example 3 Page 9 Exercise 3 allows the GSM modem to be used as a phone for voice messages. The phone number to ring is hard coded into the Flowcode program to allow the device to be setup as say an auto dial for emergency reasons. A good example of this functionality would be for use with a fire or burglar alarm system that rings you when an alarm is triggered. Again we are hard coding the phone number into a byte array. You could replace this with the function shown in example 2 that allows you to manually enter a phone number using the keypad. In the program we wait for the # key to be pressed on the keypad. Once this has been detected we send the commands to the GSM modem to initiate the phone call. Once the phone call has been established we go back into a loop that again checks the keypad. This time the phone is disconnected once the # key is detected.

10 Example 3 Page 10 The phone call is established by using the ATD command. This allows you to dial any number specified in the phone number byte array. The phone number must be terminated with a ; and a 0 to allow the ATD functions to work correctly. The test message AT commands do not need this. Therefore if you wanted to send text messages and make phone calls in your program then you would need to change the ATD functionality to add the semi colon to the end of the phone number. The GSM Receive macros are scattered in the function to ensure that any incoming data from the modem is read before it fills the RS232 buffer and causes the UART to have an error. An error on the RS232 bus will cause the transmissions to fail so we must check quite regularly to ensure this does not happen. The phone call is disconnected by calling the ATH command. This command requires no additional parameters. Please note that there are connectors included with the GSM modem that allow you to connect a stereo headset with a microphone for use with voice communications. If you want to use audio then you can use the headset included in the kit by plugging this directly into the GSM unit.

11 Troubleshooting Page 11 If you are having any problems getting up and running with any of the examples or any of the Flowcode components then the first port of call is to ensure you have your boards plugged together and wired correctly. As a rule of thumb any board with a screw terminal and a +V marking should be connected via a single core wire to the +V screw terminal on the corresponding Multiprogrammer. If you do run into any problems then there is help and advice available from our online user forums located here: The Articles section contains quite a few examples, as well as hints and tips to aid in your applications There is also an online video demonstrating Flowcode, available from the videos section of our website:

12 Other Products Page 12 Matrix TSL is a leading global technology company. Over the years we have developed a portfolio of award-winning products which have applications in Education, Industry and in the home. Learning is at the heart of much of what our company does, and the philosophy of all Matrix learning products is based on learning by doing. Each year Matrix spends around 25% of turnover on research and development to ensure that our learning and development resources are world class. MIAC PLC MIAC (Matrix Industrial Automotive Controller) is an industrial grade control unit which can be used to control a wide range of different electronic systems including sensing, monitoring and automotive. It has a number of applications in industry and learning. Formula Flowcode Formula Flowcode is a robot vehicle which is used to teach robotics, and to provide a platform for competing in robotics events. ECIO ECIO devices are powerful USB programmable microcontrollers with either 28 or 40 pin standard DIL (0.6 ) footprints. They are perfect for student use at home, project work and building fully integrated embedded systems. FlowKit The FlowKit allows for in circuit debugging directly from within Flowcode. This is the same ICD debugging feature that is included with our version 7 EB006 Multiprogrammer boards. Flowcode + E-Block Technology bundles Matrix TSL technology bundles are based on a combination of two of our most popular products, E-Blocks and Flowcode. Other bundles in the range Easy Mobile Communications Pack Easy Zigbee Pack Easy RFID Easy Internet Easy CAN Bus Easy GPS Easy USB Build your own PC Interface Build your own PLC Build your own Data-logger

E-Blocks Easy CAN Bus Bundle

E-Blocks Easy CAN Bus Bundle Page 1 Bus Bundle Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with

More information

E-Blocks Easy Zigbee Bundle

E-Blocks Easy Zigbee Bundle Page 1 Bundle Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with

More information

E-Blocks Easy GPS Bundle

E-Blocks Easy GPS Bundle Page 1 Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with the course

More information

E-Blocks Build Your Own PLC Bundle

E-Blocks Build Your Own PLC Bundle Page 1 E-Blocks Build Your Own PLC Bundle Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD

More information

E-Blocks Datalogger Bundle

E-Blocks Datalogger Bundle Page 1 E-Blocks Datalogger Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting

More information

Now you are in control

Now you are in control Page 1 Now you are in control General purpose industrial controller Full graphical programming language supplied A wide variety of applications trademark of. Page 2 Introduction What does it do? MIAC (Matrix

More information

48003 Deluxe mobile communications system

48003 Deluxe mobile communications system 48003 Deluxe mobile communications system A motivating approach for teaching mobile phone technology An ideal introduction to mobile phone technology Highly motivating for students Flowcode CD-ROM and

More information

Zigbee training solution

Zigbee training solution Zigbee training solution Now compatible with EB284 General information Zigbee provides a motivating solution for learn-ing about Zigbee wireless area network communications technology, system construction,

More information

DSP Audio Training Solution

DSP Audio Training Solution DSP Audio Training Solution Now compatible with EB650 General information This solution provides a motivating solution for learning about digital signal processing (DSP) technology, audio effects and frequency

More information

RS485 board datasheet EB062-00

RS485 board datasheet EB062-00 RS485 board datasheet EB062-00 00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 6 Appendix 1 Circuit diagram

More information

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide Gemalto EHS6T-USB Terminal Starter Kit Getting Started Guide EHS6T-USB Terminal Starter Kit Contents Image is for a Kit A version. Other versions with different antenna may be available. This manual is

More information

Mobile telephony solution. Copyright 2006 Matrix Multimedia Limited

Mobile telephony solution. Copyright 2006 Matrix Multimedia Limited Mobile telephony solution Copyright 2006 Matrix Multimedia Limited 1 About this presentation This presentation was developed by John Dobson Managing Director of Matrix Multimedia Limited. PowerPoint versions

More information

MIAC-01 Now you are in control

MIAC-01 Now you are in control Page 1 Now you are in control General purpose industrial controller Full graphical programming language supplied A wide variety of applications Page 2 Introduction What does it do? MIAC (Matrix Industrial

More information

Bluetooth board EB Technical datasheet

Bluetooth board EB Technical datasheet Bluetooth board EB024-00-2 Technical datasheet Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 7 Appendix 1

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

FLOW CODE 3 NO CODING, NO LIMITS... DATASHEET FLOW CODE

FLOW CODE 3 NO CODING, NO LIMITS... DATASHEET FLOW CODE Page 1 DATASHEET Microcontroller development software Easy to use graphical interface Fast and flexible FLOW CODE 3 www.matrixmultimedia.com Page 2 Flowcode 3 is one of the World s most advanced graphical

More information

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide Cinterion BGS2T (RS232) Terminal Starter Kit Getting Started Guide BGS2T (RS232) Terminal Starter Kit Contents PLEASE NOTE KIT CONTENTS MAY VARY ACCORDING TO ORIGIN AND THE INTENDED COUNTRY OF OPERATION

More information

TFT LCD multimedia board with touchscreen

TFT LCD multimedia board with touchscreen TFT LCD multimedia board with touchscreen www.matrixtsl.com EB076-LCD32T Contents About this document 3 Board layout 3 General information 4 Circuit description 5 Circuit diagram 6 2 Copyright About this

More information

4D Picaso Touchscreen Display board datasheet EB

4D Picaso Touchscreen Display board datasheet EB 4D Picaso Touchscreen Display board datasheet EB076-00 00-1 CONTENTS 1. About this document. 2 2. General Information.. 3 3. Board layout... 3 4. Testing this product... 4 5. Circuit description.. 4 Appendix

More information

eblocks A Adaptor Board datasheet Matrix Multimedia Adaptor Board Contents

eblocks A Adaptor Board datasheet Matrix Multimedia Adaptor Board Contents Adaptor Board datasheet version 2 board adaptor D E eblocks A C B Contents 1. About this document 2. General information 3. Board Layout 4. Getting Started 5. Circuit description Appendix o Circuit Diagram

More information

VGA multimedia board

VGA multimedia board VGA multimedia board www.matrixtsl.com EB071 Contents About this document 3 Board layout 3 General information 4 Circuit description 5 Protective cover 5 Circuit diagram 6 2 Copyright About this document

More information

ATL20 ATL30 Automatic transfer switch controller

ATL20 ATL30 Automatic transfer switch controller I 194 GB 07 07 ATL20 ATL30 Automatic transfer switch controller REMOTE CONTROL SOFTWARE MANUAL Summary Introduction... 2 Minimum resources of the PC... 2 Installation... 2 Activation of the PC-ATL connection...

More information

DEBUGGING SERIAL COMMUNICATIONS WITH OTHER DEVICES

DEBUGGING SERIAL COMMUNICATIONS WITH OTHER DEVICES DEBUGGING SERIAL COMMUNICATIONS WITH OTHER DEVICES NOTE: This application note is intended for users connecting an external device to a HomeVision serial port. It may be helpful to users connecting to

More information

GCR-16 with internal modem GXR user manual appendix J

GCR-16 with internal modem GXR user manual appendix J GCR-16 with internal modem GXR user manual appendix J GeoSIG Ltd, Ahornweg 5a, 5504 Othmarsingen, Switzerland Phone: + 41 44 810 2150, Fax: + 41 44 810 2350 info@geosig.com, www.geosig.com ii GXR manual

More information

1. About this document General information Board layout Testing this product Circuit description...

1. About this document General information Board layout Testing this product Circuit description... dspic / PIC24 Multiprogrammer datasheet EB064-00 00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 6 Appendix

More information

VISY-X. Technical Documentation. Cinterion MC 55 i. Edition: Version: 1 Article no.:

VISY-X. Technical Documentation. Cinterion MC 55 i. Edition: Version: 1 Article no.: Technical Documentation VISY-X Edition: 2016-10 Version: 1 Article no.: 350033 FAFNIR GmbH Schnackenburgallee 149 c 22525 Hamburg Tel.: +49 / 40 / 39 82 07 0 Fax: +49 / 40 / 39 06 339 Table of contents

More information

CP2832 GSM Communications Instructor Guide

CP2832 GSM Communications Instructor Guide CP2832 GSM Communications Instructor Guide CP2832-01 GSM Communications 2 Copyright 2014-2019 Matrix TSL Contents About this course... 4 C and ASM users... 5 What else is included... 7 Further information...

More information

Locktronics PICmicro getting started guide

Locktronics PICmicro getting started guide Page 2 getting started guide What you need to follow this course 2 Using the built-in programs 3 Create your own programs 4 Using Flowcode - your first program 5 A second program 7 A third program 8 Other

More information

CommLink IV Technical Guide

CommLink IV Technical Guide www.wattmaster.com CommLink IV Technical Guide Table of Contents General Information... 3 CommLink IV Overview...3 Optional IP Module Kit...3 Optional Remote Link II...3 Installing CommLink IV ONLY...3

More information

USB232 board EB Technical datasheet

USB232 board EB Technical datasheet USB232 board EB039-00-1 Technical datasheet Contents 1. About this document...2 2. General information...3 3. Board layout...4 4. Testing this product...5 5. Circuit description...7 Appendix 1 Circuit

More information

MICRO-1356 MULTI-PROTOCOL READER

MICRO-1356 MULTI-PROTOCOL READER MICRO-1356 MULTI-PROTOCOL READER The Micro-1356 reader is a miniature multi-protocol RFID reader suited for embedded applications, such as handheld readers or door key card readers. The Micro-1356 has

More information

Development KIT for TM2 GPRS modem User manual 1.2. Development KIT. Development KIT for TM2 GSM/GPRS modem User s manual 1.2

Development KIT for TM2 GPRS modem User manual 1.2. Development KIT. Development KIT for TM2 GSM/GPRS modem User s manual 1.2 Development KIT Development KIT for TM2 GSM/GPRS modem User s manual 1.2 1 Contents Attention!... 3 1. Basic Safety Requirements... 4 2. General Information... 5 2.1 Introduction... 5 2.2 About this document...

More information

Wireless LAN board. EB069

Wireless LAN board.   EB069 Wireless LAN board www.matrixmultimedia.com EB069 Contents About this document 3 Board layout 3 General information 4 Protective cover 4 Testing the product 5 Circuit description 6 Circuit diagram 7 2

More information

modern electronics teaching resources

modern electronics teaching resources modern electronics teaching resources 2010 Introduction In 2008 Flowcode and E-blocks were awarded the world s most prestigious prize for educational products the World Didac award. See www.worlddidac.org

More information

Microcontroller System Development

Microcontroller System Development 91030-20 Microcontroller System Development LabVolt Series Datasheet Festo Didactic en 04/2018 Table of Contents General Description 2 Options include: 2 Topic Coverage 3 Optional Equipment 3 Module Options

More information

EB921 TCP/IP Solution Course notes

EB921 TCP/IP Solution Course notes EB921 TCP/IP Solution Copyright Matrix Multimedia Limited 2011 Contents 1 Getting started...6 1.1 Required hardware...6 1.2 Test routine...6 1.3 Required software...7 1.4 Additional software...7 1.5 Documentation...7

More information

Good Idea to Working Electronic Model

Good Idea to Working Electronic Model Good Idea to Working Electronic Model by Jan H. Lichtenbelt, March 2011 Abstract Seeing an idea manifest itself into a fully working creation is always satisfying, however so many good ideas go to waste

More information

Getting Started with STK200 Dragon

Getting Started with STK200 Dragon Getting Started with STK200 Dragon Introduction This guide is designed to get you up and running with main software and hardware. As you work through it, there could be lots of details you do not understand,

More information

Internet board datasheet EB

Internet board datasheet EB Internet board datasheet EB023-00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 9 Appendix 1 Circuit diagram

More information

MICROCONTROLLER BASED LPG GAS DETECTOR USING GSM MODULE

MICROCONTROLLER BASED LPG GAS DETECTOR USING GSM MODULE MICROCONTROLLER BASED LPG GAS DETECTOR USING GSM MODULE Ashish Sharma (B.Tech., EL Engg.) E-mail: ashishpreet2009@gmail.com : contactashish10@gmail.com ABSTRACT Ideal gas sensor is used to detect the presence

More information

Atmel AVR datasheet. Matrix Multimedia Atmel AVR Board EB Contents

Atmel AVR datasheet. Matrix Multimedia Atmel AVR Board EB Contents Atmel AVR datasheet Contents 1. About this document 2. General information 3. Board overview 4. Getting Started 5. Block schematic and description Appendix A. Circuit diagram B. Compatible AVR device C.

More information

MMI6070 Quick Start Guide

MMI6070 Quick Start Guide MMI6070 Quick Start Guide Introduction If at any time more information is required on HMI safety and protection ratings, HMI Power, and HMI communication, please refer to the MMI6070 Installation Guide

More information

PHAROS. GPS Phone 600 Series. Hardware Quick Start Guide. Travel with ease and confidence

PHAROS. GPS Phone 600 Series. Hardware Quick Start Guide. Travel with ease and confidence R PHAROS GPS Phone 600 Series Hardware Quick Start Guide Travel with ease and confidence Pharos GPS Phone 600 Series Quick Start Guide GPRS / EDGE Settings for AT&T / Cingular 1. Tap Start, Settings >

More information

Debugging and Development Process of series of SIM900(A) module development board

Debugging and Development Process of series of SIM900(A) module development board Debugging and Development Process of series of SIM900(A) module development board 1 Summary: SIM900(A) module uses a serial port (UART) to communicate, and all of our SIM900(A) development boards include

More information

SPI Memory and D/A board datasheet EB

SPI Memory and D/A board datasheet EB SPI Memory and D/A board datasheet EB013-00-2 Contents 1. About this document...2 2. General information...3 3. Board layout...4 4. Testing this product...5 5. Circuit description...6 Appendix 1 Circuit

More information

PI Scanner User Guide

PI Scanner User Guide PI Scanner User Guide Table of Contents 1. Highlights 2. Overview 3. Installation 3.1. PI Scanner Software Installation 3.2. USB to Serial Interface Board Installation 3.3. Programming the PI Scanner IP

More information

AUTOLOG GSM-PLC STEP BY STEP

AUTOLOG GSM-PLC STEP BY STEP AUTOLOG GSM-PLC STEP BY STEP AutoLog GSM4 Unit with power supply: Open the cover with screwdriver (GSM4 Unit in picture): Open the cover with screwdriver (GSM14 Unit in picture): AutoLog GSM4 Unit with

More information

Getting Started Guide

Getting Started Guide Introduction Flowcode is an Integrated Development Environment (IDE) for programming microcontrollers such as 8, 16 and 32bit PIC, Arduino and ARM devices. It achieves this by using flowcharts instead

More information

FERGUSON BEAUREGARD. RTU-5000 Configurator User Manual

FERGUSON BEAUREGARD. RTU-5000 Configurator User Manual FERGUSON BEAUREGARD RTU-5000 Configurator User Manual FERGUSON BEAUREGARD RTU-5000 Configurator User Manual The Ferguson Beauregard RTU-5000 Configurator program and manuals are Copyright 1997-2004 by

More information

Graphical LCD Display Datasheet EB

Graphical LCD Display Datasheet EB Graphical LCD Display Datasheet EB043-00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 6 4. Testing this product... 7 5. Circuit description... 8 Appendix 1 Circuit

More information

Development KIT for TM2Q GSM/GPRS module. User s Manual v1.1

Development KIT for TM2Q GSM/GPRS module. User s Manual v1.1 Development KIT for TM2Q GSM/GPRS module User s Manual v1.1 TABLE OF CONTENTS 1. Basic Safety Requirements...4 2. General Information...5 2.1. INTRODUCTION...5 2.2. ABOUT THIS DOCUMENT...5 2.3. LEGAL NOTICE...5

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

Stellaris LM3S3748 Evaluation Kit README FIRST

Stellaris LM3S3748 Evaluation Kit README FIRST Stellaris LM3S3748 Evaluation Kit README FIRST The Stellaris LM3S3748 Evaluation Kit provides a low-cost way to start designing applications with Stellaris microcontrollers on a compact and versatile evaluation

More information

Communi-Cell Communicator Nokia Version

Communi-Cell Communicator Nokia Version Communi-Cell Communicator Nokia Version Jan 2007 Instruction Manual 1 ABOUT THE COMMUNI-CELL COMMUNICATOR SYSTEM The Communi-Cell Communicator system is based on GSM SMS technology. It uses a standard

More information

MIAC-01. Operation and Programming guide. Now you are in control. MIAC operation and programming guide. Page 1 MI3278

MIAC-01. Operation and Programming guide. Now you are in control. MIAC operation and programming guide. Page 1 MI3278 Page 1 MIAC-01 Now you are in control Operation and Programming guide MI3278 Page 2 Maximum ratings Power supply (V+) Transistor output supply (M) 16VDC, 2A 28VDC, 4A Inputs (I1 - I8) -3 to +45V Transistor

More information

GC-10 Wireless Control Box. User Guide

GC-10 Wireless Control Box. User Guide Wireless Control Box User Guide 1. Introduction This Installation and User Guide will assist you in installing and configuring the Brodersen SMS Alarm Unit. The guide covers the installation of the configuration

More information

Smart. Quick Start Guide

Smart. Quick Start Guide Smart Quick Start Guide 2 Contents 1. What s in the Box?...3 2. Your Phone at a Glance...4 3. Setting up your Phone...9 4. Setting up an E-mail Account...12 5. Personalizing your Phone...13 6. Browsing

More information

LX8 emfone. Installation and Configuration. TVL No. 336 Issue No. 1 03/10/2011

LX8 emfone. Installation and Configuration. TVL No. 336 Issue No. 1 03/10/2011 LX8 emfone Installation and Configuration TVL No. 336 Issue No. 1 03/10/2011 Thames Valley Controls Unit 15 Manor Farm Industrial Estate Flint Flintshire CH6 5UY T: +44 (0) 1352 793222 F: +44 (0) 1352

More information

dual code view c code editing new variable types project explorer automatic documentation search and replace compiler error linking

dual code view c code editing new variable types project explorer automatic documentation search and replace compiler error linking www.matrixmultimedia.com W NE dual code view c code editing new variable types project explorer automatic documentation search and replace compiler error linking improved annotations and much more... introducing

More information

FLOW CODE 3 NO CODING, NO LIMITS... FLOW CODE

FLOW CODE 3 NO CODING, NO LIMITS... FLOW CODE Page 1 FLOW CODE 3 Microcontroller development software Easy to use graphical interface Fast and flexible PICmicro and AVR devices Page 2 Flowcode 3 is one of the World s most advanced graphical programming

More information

The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system.

The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system. Introduction 1 Welcome to the GENIE microcontroller system! The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system.

More information

USB485. USB to RS485 Converter Card. User Manual for connecting with Windows Vista Version 1.01

USB485. USB to RS485 Converter Card. User Manual for connecting with Windows Vista Version 1.01 USB485 USB to RS485 Converter Card User Manual for connecting with Windows Vista Version 1.01 RMS Technologies 2533 N. Carson St. #4698, Carson City, NV 89706-0147 1-877- 301-3609 www.rmsmotion.com sales@rmsmotion.com

More information

New in version 4: Panel Creator In Circuit Debug Virtual networks C Code customization Switch Icon Floating point

New in version 4: Panel Creator In Circuit Debug Virtual networks C Code customization Switch Icon Floating point Microcontroller development software Easy to use graphical interface Fast and flexible PICmicro, ARM, and AVR devices New in version 4: Panel Creator In Circuit Debug Virtual networks C Code customization

More information

Bolt 18F2550 System Hardware Manual

Bolt 18F2550 System Hardware Manual 1 Bolt 18F2550 System Hardware Manual Index : 1. Overview 2. Technical specifications 3. Definition of pins in 18F2550 4. Block diagram 5. FLASH memory Bootloader programmer 6. Digital ports 6.1 Leds and

More information

Card Reader Board EB037-00

Card Reader Board EB037-00 Card Reader Board EB037-00 00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 6 Appendix 1 Circuit diagram

More information

INSTALLATION AND OPERATION MANUAL FOR ACC 070 COMM LINK RS485 TO PC INTERFACE AND PRISM SOFTWARE

INSTALLATION AND OPERATION MANUAL FOR ACC 070 COMM LINK RS485 TO PC INTERFACE AND PRISM SOFTWARE SenTech Corporation 5745 Progress Road Indianapolis, Indiana 46241 888/248-1988 FAX 317/248-2014 INSTALLATION AND OPERATION MANUAL FOR ACC 070 COMM LINK RS485 TO PC INTERFACE AND PRISM SOFTWARE ii APPLICABILITY

More information

Fiery PRO 80 /S450 65C-KM Color Server. Printing from Windows

Fiery PRO 80 /S450 65C-KM Color Server. Printing from Windows Fiery PRO 80 /S450 65C-KM Color Server Printing from Windows 2007 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45067315 01 November

More information

Modem Configuration Procedure

Modem Configuration Procedure 17.12.2012 / V.4 1 / 5 Modem Configuration Procedure Document Revision Date Description Who Checked Approved 09.09.2008 First version ST ME ALB 14.12.2012 Adjusted Modem Strings MAE 1 Introduction This

More information

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media FAQ for KULT Basic 1. What do the Icons mean that can be found in notifications bar at the top of my screen? 2. How can I move an item on the home screen? 3. How can I switch between home screens? 4. How

More information

IP Softphone 2050 and Mobile Voice Client 2050 User Guide

IP Softphone 2050 and Mobile Voice Client 2050 User Guide Nortel Networks Communication Server 1000 IP Softphone 2050 and Mobile Voice Client 2050 User Guide Revision history Revision history September 2004 Standard 4.00. This document is up-issued for Communication

More information

CMM 900-3W USER GUIDE

CMM 900-3W USER GUIDE CMM 900-3W USER GUIDE AMPS Cellular Modem Module (3W) Page 1 of 1 Table of Contents 1. PRODUCT OVERVIEW...3 1.1 Features:... 3 1.2 Serial Port Pins:... 5 1.3 Applications:... 5 1.4 Your package includes:...

More information

User Manual for VE GSM Modem

User Manual for VE GSM Modem User Manual for VE GSM Modem INTRODUCTION GSM/GPRS Smart Modem is a multi-functional, ready to use, rugged unit that can be embedded or plugged into any application. The Smart Modem can be controlled and

More information

Sensor board. EB003

Sensor board.   EB003 Sensor board www.matrixtsl.com EB003 Contents About this document 3 Board layout 3 General information 4 Circuit description 4 Protective cover 5 Circuit diagram 6 2 Copyright About this document This

More information

Home Automation Board datasheet

Home Automation Board datasheet Home Automation Board datasheet Contents 1. About this document 2. General information 3. Board Layout 4. Getting Started 5. Circuit Description Appendix 1 Circuit Diagram Copyright 2004 Matrix Multimedia

More information

Cellular modem and Transceiver

Cellular modem and Transceiver ARC CDL-900 Cellular modem and Transceiver ARC Electronics 1800-926 926-0226 / 281-392 392-6333 814 Wild Horse Vly Rd Suite "H" Katy, TX 77450 May 11, 1999 Cellular Data Link CDL 900 Point-to-Point Wireless

More information

SKP16C26 Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.

SKP16C26 Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc. SKP16C26 Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance

More information

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 Features RoHS 520MHz Low-power ARM processor w/ 800 x 600 Color LCD Power Over Ethernet and 10/100BASE-T Ethernet GPS module

More information

YEALINK T41G DESCRIPTION

YEALINK T41G DESCRIPTION YEALINK T41G THE SIP-T41P IS A FEATURE-RICH SIP PHONE FOR BUSINESS. THE 3-LINE IPPHONE HAS BEEN DESIGNED BY PURSUING EASE OF USE IN EVEN THE TINIESTDETAILS. DELIVERING A SUPERB SOUND QUALITY AS WELL AS

More information

Digital Voice Softphone User Guide Version 2.0. Digital Voice Softphone User Guide Version 2.0

Digital Voice Softphone User Guide Version 2.0. Digital Voice Softphone User Guide Version 2.0 Digital Voice Softphone User Guide 1 TABLE OF CONTENTS 1. Set-up... 3 1.1. Using the Digital Voice Softphone... 3 1.2. Digital Voice Softphone Set-up... 3 1.3. System Requirements... 4 1.4. Installing

More information

1.0 The System Architecture and Design Features

1.0 The System Architecture and Design Features 1.0 The System Architecture and Design Features Figure 1. System Architecture The overall guiding design philosophy behind the Data Capture and Logging System Architecture is to have a clean design that

More information

User Guide. BlackBerry 8700 Smartphone

User Guide. BlackBerry 8700 Smartphone User Guide BlackBerry 8700 Smartphone SWD-280428-0212105034-001 Contents BlackBerry basics...9 Switch applications...9 Assign an application to a Convenience key...9 Set owner information...9 About links...9

More information

ProCon GSM INSTALLATION AND APPLICATION MANUAL. ProCon GSM manual. .gsm-komunikatorji.com. for module version 1.4

ProCon GSM INSTALLATION AND APPLICATION MANUAL. ProCon GSM manual. .gsm-komunikatorji.com. for module version 1.4 informacije in naročila: info@gsm-komunikatorji.com.gsm-komunikatorji.com ProCon GSM INSTALLATION AND APPLICATION MANUAL for module version 1.4 1 Index I. Basic descriptions... 3 II. Steps of installation...

More information

TECHNICAL MANUAL NEW PANDINO 4. GSM Telephonics Communicator WITH QUAD-BAND GSM INDUSTRIAL MODULE

TECHNICAL MANUAL NEW PANDINO 4. GSM Telephonics Communicator WITH QUAD-BAND GSM INDUSTRIAL MODULE TECHNICAL MANUAL NEW PANDINO 4 GSM Telephonics Communicator WITH QUAD-BAND GSM INDUSTRIAL MODULE GSM TELEPHONE COMMUNICATOR IS IN CONFORMITY WITH ALL THE ESSENTIAL REQUIREMENT OF DIRECTIVE 1999/5/CE 89/336/CEE

More information

Microcontroller System Development ( )

Microcontroller System Development ( ) Microcontroller System Development 581210 (91030-20) LabVolt Series Datasheet Festo Didactic en 10/2018 Table of Contents General Description 2 Options include: 2 Topic Coverage 3 Optional Equipment 3

More information

MAINTEX. User Guide INS571

MAINTEX. User Guide INS571 TM MAINTEX User Guide INS571 Contents Contents... 2 Introduction... 3 Installation... 3 Starting Maintex... 3 User Logon... 4 How to create a new Operator... 5 Connection Setup... 7 Modem Setup... 8 Network

More information

FAST Installation (PMRS) Box Contents

FAST Installation (PMRS) Box Contents FAST Installation (PMRS) Box Contents PMRS Unit Video/Power Adapter GPS Antenna 5V Charger u USB Cable 12V 5V Car Adapter PTZ+GPIO Cable Voice splitter GSM Antenna (Optional) LAN Cable Required Items SIM

More information

1. Introduction 1.1.Product Overview

1. Introduction 1.1.Product Overview 1. Introduction 1.1.Product Overview The multi-function panel is a new extreme 3-module product comes with multi-slot card reader, thermal indicator and multi I/O panel, user able to install in standard

More information

LIN bus board datasheet EB

LIN bus board datasheet EB LIN bus board datasheet EB027-00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 7 Appendix 1 Circuit diagram

More information

DeviceNet Network Analysis Using the NetDecoder Software Quick Start Guide

DeviceNet Network Analysis Using the NetDecoder Software Quick Start Guide DeviceNet Network Analysis Using the NetDecoder Software Quick Start Guide Copyright 2000 2010 Frontline Test Equipment, Inc. All rights reserved. You may not reproduce, transmit, or store on magnetic

More information

Darca Plus Eltek Download ing And Remote Con trol Applica tion

Darca Plus Eltek Download ing And Remote Con trol Applica tion Eltek Downloading And Remote Control Application Copyright Microsoft, Windows 98-SE/ME, Windows NT, Windows 2000/XP, Vista, Windows 7 and Excel are registered trademarks of Microsoft Corporation. This

More information

TR-101 User Manual. Ver 1.14

TR-101 User Manual. Ver 1.14 User Manual Ver 1.14 Table of Contents 1. Introduction... 3 2. Features... 3 3. Specification... 4 4. Start-up... 5 4.1 Accessories... 5 4.2 Charging the battery... 6 4.3 Install SIM card... 6 5. Hardware

More information

PICmicro Microcontroller Lite programmer datasheet

PICmicro Microcontroller Lite programmer datasheet PICmicro Microcontroller Lite programmer datasheet Contents 1. About this document 2. General information 3. Board overview 4. Getting Started 5. Block schematic and description Appendix A. Circuit diagram

More information

USB485 USB to RS485 Converter Card

USB485 USB to RS485 Converter Card USB485 USB to RS485 Converter Card User Manual Version 1.02 RMS Technologies 2533 N. Carson St. #4698, Carson City, NV 89706-0147 1-877-301-3609 www.rmsmotion.com sales@rmsmotion.com Thank you for purchasing

More information

User Guide. BlackBerry 8707 Series

User Guide. BlackBerry 8707 Series User Guide BlackBerry 8707 Series SWD-129381-0116055452-001 Contents BlackBerry basics... 9 Switch applications... 9 Assign an application to a Convenience key... 9 Set owner information... 9 About links...

More information

A quick guide to your. Xda Stellar

A quick guide to your. Xda Stellar A quick guide to your Xda Stellar Contents Section 1 Getting started 02 Install the SIM card 02 Install the MicroSD card 03 Installing the battery 04 To turn the device on or off 05 Synchronise your PDA

More information

Programming in the MAXQ environment

Programming in the MAXQ environment AVAILABLE The in-circuit debugging and program-loading features of the MAXQ2000 microcontroller combine with IAR s Embedded Workbench development environment to provide C or assembly-level application

More information

Troubleshooter Quick Reference Guide

Troubleshooter Quick Reference Guide Troubleshooter Quick Reference Guide March 2008 EAZ0025B29B Rev. C Trademarks Acknowledgement Snap-on, Scanner, and Fast-Track are trademarks of Snap-on Incorporated. All other marks are trademarks of

More information

Sentar V80 Watch User Manual

Sentar V80 Watch User Manual Sentar V80 Watch User Manual Please read this manual carefully before starting to use the watch, pictures for reference only. 1.Preparation 1.1. Check if the watch is of the correct model and has complete

More information

Keys and parts (front)

Keys and parts (front) 2008 Nokia. All rights reserved. Nokia, Nokia Connecting People, Nseries, N96, Navi, and Nokia Care are trademarks or registered trademarks of Nokia Corporation. Other product and company names mentioned

More information

LPC2468 Industrial Reference Design Platform System Development Kit Version 1.2. August 2008

LPC2468 Industrial Reference Design Platform System Development Kit Version 1.2. August 2008 QuickStart Guide LPC2468 Industrial Reference Design Platform System Development Kit Version 1.2 August 2008 1.0 System Overview The LPC2468 Industrial Reference Design (IRD) is a platform targeted at

More information