E-Blocks Easy GPS Bundle

Size: px
Start display at page:

Download "E-Blocks Easy GPS Bundle"

Transcription

1 Page 1 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 GPS, LCD and Switch E-Blocks all need to be connected to the +V on the EB006 via single core wire. The GPS E-Block also has a VANT terminal which needs to be connected to the +14V on the EB006 via single core wire. Connect the antenna to the GPS module on the GPS E-Block. 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 is very basic and simply prints the GPS fix data onto the LCD.

4 GPS Component Page 4 The Flowcode GPS component can be added to your program by finding the component in the Misc section of the Flowcode component toolbar. GPS Component Icon Once the component has been added to your program you will find that the GPS component icon has been added to your panel. The GPS component properties page is laid out as shown on the left. At the moment the only available control in the properties is to use the baud rate to select a rate compatible with your GPS receiver hardware. The EB045 E-Block requires a baud rate of 4800bps and the newer EB056 E -Block requires a baud rate of 9600bps. The custom code feature allows you to edit some more of the properties of the GPS component. Select the component in the panel and then click the custom code button to start the process. Then select the Defines section of code and click Edit. Once in here you can control exactly which GPS records are saved for use in your Flowcode program. You can also define how much memory is used y the receive buffer and assign control to UART 2 if your device has the hardware. For normal operation you can leave all of the properties unmodified.

5 Example 1 Page 5 Example 1 demonstrates using a GPS receiver to collect time and date information. The GPS data is automatically fed into the UART on the microcontroller by the GPS receiver hardware. Every time the microcontroller receives a byte from the GPS it automatically adds the byte to the incoming buffer ready to be processed. When a carriage return is detected signifying the end of a message string the string is sent off to be parsed. This parses and saves the GPS records that are specified to be recorded. By default all of the GPS records are saved. Calling the read functions then acts to retrieve the record from the C code allowing you to bring the records into Flowcode for further processing or displaying etc. At the start of the program we simply start-up the LCD component by calling the start component macro. After that we go straight into an infinite loop Inside the infinite loop we simply read back the relevant time and date variables into Flowcode variables. The Read_UTC_Time and Read_UTC_Date functions are capable of returning several pieces of information depending on the input parameter given. Read_UTC_Time: Read_UTC_Date h returns the hour count m return the minute count s returns the second count y returns the year m returns the month d returns the day The display macro at the end of the loop forwards the values to the LCD ready for viewing.

6 Example 1 Page 6 At the start of the print macro function we simply clear the display to remove the last output that was sent to the display. Once the display has been cleared we are ready to start printing out the time variables. Each variable is checked to see if it is less then 10. If the variable is less then 10 then an extra 0 character is sent to the display to allow the display area to remain constant. An example of this is: Time: 3:3:22 Where what we should be seeing is: Time: 03:03:22 Between each of the variables we simply send out a : character to allow the hours minutes and seconds to be segregated.

7 Example 1 Page 7 Before we start to print out the date information we use another component macro call to the LCD to specify that we move to the start of the second line. Again when printing out the date we have to check each variable to see if it is under 10 and therefore less then 2 characters on the screen. Any variables that are less then two characters are automatically given an extra 0 to bring up the character count and allow the display to remain formatted correctly. After the variables have been printed to the display we wait 100 milliseconds before repeating the process over again. If your system is still not getting any valid data after around 1 minute then you could try moving the antenna to a more open space or taking it outside. Hanging the antenna out of a window may also help to increase your signal strength. If you are powering the board up and down a lot but do not want to have to wait the long connection period then you can insert a battery into the E-Block to allow the GPS module to remain in low power mode when the power to the board is removed. The VANT screw terminal input on the E-Block provides a voltage to boost the gain of the Antenna.

8 Example 2 Page 8 Exercise 2 focuses on collecting the GPS position data and plotting that to the LCD. Again the variables are automatically populated for us. This time however we are using the Is_Data_Valid function to check if the data being received by the GPS receiver is reliable. At the beginning of the program we again simply start-up the LCD and head straight into the infinite loop. At the start of the loop we clear the display to clear any previous messages and then we start to print out the values. The first record to print out is the Is_Data_Valid record. This will return a 0 by default when there is either no GPS connection or if the fix data is still unstable due to lack of satellites or local noise. The next record we will read is the number of satellites that the GPS device can see. Most modern GPS devices are capable of detecting up to 20 unique satellites and a connection of around 12 satellites seems to be around the norm.

9 Example 2 Page 9 The Float_To_String function is used to convert the float variable into a string of ASCII characters. This can be called by using the string manipulation functions or can be called as we have done here using a line of C code. The latitude record is read back as a float, converted to a string and then the string is sent to the LCD. If we wanted to make decisions based on where we are then the floating point nature of the returned variable can be very useful. Again we read the longitude record as a floating point variable and convert to a string for displaying purposes. You could also send the string over a bus such as RS232, SPI etc by sending a byte at a time.

10 GPS Records Page 10 Shown above is the custom code screen for the defines section of the GPS component. This allows you to enable or disable the logging of the GPS record data as well as specifying some other basic properties. The record logging can be disabled by switching the define from a 1 to a 0. Disabling the recording has the benefit of saving you both RAM and ROM space in your program. The amount of memory each record consumes is detailed below. Note that if a single record uses the float library then the float library will be included into your program. This will be included only once. If the record from a GPS message is not being read then that GPS message is no longer parsed by the component allowing for better optimisation. Record Data RAM Space ROM Space Float Library Calls GPS Message Latitude 10 Bytes Func + Parse Yes RMC Longitude 11 Bytes Func + Parse Yes RMC Time 3 Bytes Func + Parse No RMC Date 3 Bytes Func + Parse No RMC Ground Speed 8 Bytes Func + Parse Yes RMC Altitude 8 Bytes Func + Parse Yes GGA Satellite Count 1 Byte Func + Parse No GSV Buffer Overflow 1 Byte Func + Parse No RMC Course Over Ground 8 Bytes Func + Parse Yes RMC

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 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 Mobile Communications Bundle

E-Blocks Mobile Communications Bundle Page 1 Communications 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

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

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

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

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

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

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

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

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

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

Remember you can download a complete NMEA 0183 reference manual here:

Remember you can download a complete NMEA 0183 reference manual here: GPS Series - Part 3 By Michael Simpson Interface to a GPS Module or Receiver As seen in December 2007 of Servo Magazine Pick up an issue at www.servomagazine.com At this point you should understand how

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

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

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

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

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

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

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

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

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

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

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

Accelerometer board. EB068

Accelerometer board.   EB068 Accelerometer board www.matrixtsl.com EB0 Contents About this document Board layout General information Testing this product Circuit description 5 Circuit diagram Copyright 0 Matrix TSL About this document

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

LCD board. EB005

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

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

LCD03 - I2C/Serial LCD Technical Documentation

LCD03 - I2C/Serial LCD Technical Documentation LCD03 - I2C/Serial LCD Technical Documentation Pagina 1 di 5 Overview The I2C and serial display driver provides easy operation of a standard 20*4 LCD Text display. It requires only a 5v power supply and

More information

Application Note. Energy Meter LAN Interface

Application Note. Energy Meter LAN Interface Application Note AN2xxx Energy Meter LAN Interface Author: Sunil Jha Associated Project: Yes Associated Part Family: CY8C27xxx PSoC Designer Version: 4.10 Summary Automated Meter Reading (AMR) now a day

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

LCD03 - I2C/Serial LCD Technical Documentation

LCD03 - I2C/Serial LCD Technical Documentation LCD03 - I2C/Serial LCD Technical Documentation 2YHUYLHZ The I2C and serial display driver provides easy operation of a standard 20*4 LCD Text display. It requires only a 5v power supply and the two data

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

GPS Series. Build a GPS Smart Logger. By Michael Simpson. As seen in November 2008 of Servo Magazine Pick up an issue at

GPS Series. Build a GPS Smart Logger. By Michael Simpson. As seen in November 2008 of Servo Magazine Pick up an issue at GPS Series By Michael Simpson Build a GPS Smart Logger As seen in November 2008 of Servo Magazine Pick up an issue at www.servomagazine.com I recently did a GPS series covering various GPS modules and

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, AVR, dspic, and PIC24 devices New in version 4: Panel Creator In Circuit Debug Virtual networks C Code

More information

Basics of UART Communication

Basics of UART Communication Basics of UART Communication From: Circuit Basics UART stands for Universal Asynchronous Receiver/Transmitter. It s not a communication protocol like SPI and I2C, but a physical circuit in a microcontroller,

More information

Getting Started Guide RS-EDP & XC167 CPU Module. Version 2 10th June 2010

Getting Started Guide RS-EDP & XC167 CPU Module. Version 2 10th June 2010 Getting Started Guide RS-EDP & XC167 CPU Module Version 2 10th June 2010 Electrocomponents plc Page 1 Contents 1. Introduction 3 2. Development Tool Support 4 2.1 FTDI Based USB to JTAG Converter... 4

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

SPI memory and D/A board

SPI memory and D/A board SPI memory and D/A board www.matrixtsl.com EB013 Contents About this document 3 Board layout 3 General information 4 Circuit description 4 Protective cover 6 Circuit diagram 7 2 Copyright About this document

More information

GPS Series - Part 1 EM-406A. Interface to a GPS Module or Receiver. By Michael Simpson

GPS Series - Part 1 EM-406A. Interface to a GPS Module or Receiver. By Michael Simpson GPS Series - Part 1 By Michael Simpson Interface to a GPS Module or Receiver As seen in October 2007 of Servo Magazine Pick up an issue at www.servomagazine.com I m sure you all have had dreams of using

More information

User Guide: PRDBIF1. Version 1.0 March 1, Presented by: Klaus Seiberts Jim Childers

User Guide: PRDBIF1. Version 1.0 March 1, Presented by: Klaus Seiberts Jim Childers User Guide: PRDBIF1 Version 1.0 March 1, 2016 Presented by: Klaus Seiberts Jim Childers 1 Introduction The PRDBIF1 board is designed as an interface between the MRD2 from Texas Instruments and the RFM

More information

Controller Area Network Global Positioning System Receiver and Real Time Clock. Copyright EVTV LLC EVTV CAN-GPS 3.01

Controller Area Network Global Positioning System Receiver and Real Time Clock. Copyright EVTV LLC EVTV CAN-GPS 3.01 EVTV CAN-GPS Controller Area Network Global Positioning System Receiver and Real Time Clock Copyright 2015 - EVTV LLC EVTV CAN-GPS 3.01 DECEMBER 2017 1 INTRODUCTION The EVTV Controller Area Network Global

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

ARM programmer and daughter board EB Technical datasheet

ARM programmer and daughter board EB Technical datasheet ARM programmer and daughter board EB185-00-1 Technical datasheet Contents 1 About this document...2 2 General information...3 3 Description...3 4 Board layout...4 5 Testing this product...5 6 Circuit description...7

More information

Easy GPS Readings for the Basic Stamp Chip. By Randy R. Price Kansas State University Biological and Agricultural Engineering Department

Easy GPS Readings for the Basic Stamp Chip. By Randy R. Price Kansas State University Biological and Agricultural Engineering Department Easy GPS Readings for the Basic Stamp Chip By Randy R. Price Kansas State University Biological and Agricultural Engineering Department Introduction: Small microcontrollers, such as the Basic Stamp II

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

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

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

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

OLED graphical LCD board

OLED graphical LCD board OLED graphical LCD board www.matrixtsl.com EB057 EB058 Contents About this document Board layout General information Circuit description Protective cover Circuit diagram 2 4 4 5 6 Copyright Matrix Technology

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

Multimedia Files on 4D E-blocks

Multimedia Files on 4D E-blocks Multimedia Files on 4D E-blocks by David A April 2012 Abstract The new 4D display E-blocks allow users to run files from an SD card slot located on the module. However getting the boards to access these

More information

USB232 board. EB039

USB232 board.   EB039 USB232 board www.matrixtsl.com EB039 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

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

RFID: Read and Display V2010. Version 1.1. Sept Cytron Technologies Sdn. Bhd.

RFID: Read and Display V2010. Version 1.1. Sept Cytron Technologies Sdn. Bhd. PR8-B RFID: Read and Display V2010 Version 1.1 Sept 2010 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion

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

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

Getting started with your DGH module:

Getting started with your DGH module: Getting started with your DGH module: This document contains step-by-step instructions to quickly connect and communicate with your new DGH modules. For most applications, new modules require a one-time

More information

ARM programmer and daughter board

ARM programmer and daughter board ARM programmer and daughter board www.matrixtsl.com EB185 Contents About this document 3 Board layout 3 General information 4 Circuit description 4 Protective cover 5 Circuit diagram 6 2 Copyright About

More information

AT89S8252 Development Board V1.0. Manual

AT89S8252 Development Board V1.0. Manual AT89S8252 Development Board V1.0 Manual Page 1 Chapter 1. Introduction 1.1 Introduction This user s guide describes how to connect to and set-up the AT89S8252 Development Board, for program development

More information

AWQDZXVC Multi-functional BTGP-38KM Bluetooth GPS Data Logger V1.0

AWQDZXVC Multi-functional BTGP-38KM Bluetooth GPS Data Logger V1.0 AWQDZXVC Multi-functional BTGP-38KM Bluetooth GPS Data Logger V1.0 1 Package Contents: Main Unit www.spygadgetonline.ca Rechargeable Li-ion Battery AC Adaptor Car Charger CD Driver USB Cable 2 Diagram

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

Application Note 101 um-fpu64. Reading GPS Data. Microcontroller. GPS Receiver. Introduction. um-fpu64

Application Note 101 um-fpu64. Reading GPS Data. Microcontroller. GPS Receiver. Introduction. um-fpu64 Application Note 101 um-fpu64 Reading GPS Data Introduction GPS data is used in a wide range of embedded systems applications. Adding a GPS device to an application can consume significant resources on

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

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

Cytron USB to UART Converter UC00A

Cytron USB to UART Converter UC00A Cytron USB to UART Converter UC00A User s Manual V1.1 August 2009 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded

More information

To be familiar with the USART (RS-232) protocol. To be familiar with one type of internal storage system in PIC (EEPROM).

To be familiar with the USART (RS-232) protocol. To be familiar with one type of internal storage system in PIC (EEPROM). Lab # 6 Serial communications & EEPROM Objectives To be familiar with the USART (RS-232) protocol. To be familiar with one type of internal storage system in PIC (EEPROM). Serial Communications Serial

More information

The Embedded System Design Process. Wolf Text - Chapter 1.3

The Embedded System Design Process. Wolf Text - Chapter 1.3 The Embedded System Design Process Wolf Text - Chapter 1.3 Design methodologies for complex embedded systems? Design methodologies A procedure for designing a system. Understanding your methodology helps

More information

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment Dept. of Electrical, Computer and Biomedical Engineering Data Acquisition Systems and the NI LabVIEW environment Data Acquisition (DAQ) Use of some data acquisition technique can be convenient, when not

More information

Opto-isolator board datasheet EB

Opto-isolator board datasheet EB Opto-isolator board datasheet EB-035-00-1 CONTENTS 1. About this document 2 2. General Information 3 3. Board layout. 4 4. Testing this product... 4 5. Circuit description. 5 Appendix 1 Circuit diagram

More information

Lab 01 Arduino 程式設計實驗. Essential Arduino Programming and Digital Signal Process

Lab 01 Arduino 程式設計實驗. Essential Arduino Programming and Digital Signal Process Lab 01 Arduino 程式設計實驗 Essential Arduino Programming and Digital Signal Process Arduino Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's

More information

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems MT2 Introduction Embedded Systems MT2.1 Mechatronic systems Mechatronics is the synergistic integration of mechanical engineering, with electronics and intelligent computer control in the design and manufacturing

More information

Installation instructions for USB cables SiLabs CP2102 chipset Please install driver before connecting cable!

Installation instructions for USB cables SiLabs CP2102 chipset Please install driver before connecting cable! TechnoFix UK Installation instructions for USB cables SiLabs CP2102 chipset This document contains four sections: 1. USB cable driver installation instructions 2. Instructions for CAT & CI-V cables 3.

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

Video VBOX Lite. 10Hz GPS Data-logger with Integrated Video and Graphics. What can Video VBOX Lite do? Features

Video VBOX Lite. 10Hz GPS Data-logger with Integrated Video and Graphics. What can Video VBOX Lite do? Features Powerful VBOX datalogging and video technology in a user-friendly, affordable product is a one box solution, incorporating a solid state video recorder, a VBOX 10Hz GPS data-logger and a real time graphic

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

FPGA starter pack. EB940

FPGA starter pack.   EB940 FPGA starter pack EB940 General information This starter pack is a flexible training solution for learning FPGA and CPLD programming and for project work. 1. Benefits A complete learning solution including

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 Circuit description 4 Protective cover 5 Circuit diagram 6 2 Copyright Matrix Multimedia

More information

Do-more H2 Series PLC System Specifications

Do-more H2 Series PLC System Specifications Do-more H2 Series PLC System Specifications General Specifications General Specifications Operating Temperature 32 F to 131 F (0 C to 55 C) Storage Temperature 4 F to 158 F ( 20 C to 70 C) Ambient Humidity

More information

CPLD board datasheet EB

CPLD board datasheet EB CPLD board datasheet EB020-00-3 Contents. About this document... 2 2. General information... 3 3. Board layout... 4 4. Testing this product... 5 5. Circuit description... 6 Appendix Circuit diagram Copyright

More information

V-MUX Downloader version 6.0 User Manual

V-MUX Downloader version 6.0 User Manual V-MUX Downloader version 6.0 User Manual V-MUX Downloader v6.0 USER MANUAL 2007 Weldon, A Division of Akron Brass Table of Contents Introduction and General Computer Requirements..4 Hardware: V-MUX Diagnostics/Downloader

More information

LED board. EB004

LED board.  EB004 LED board www.matrixmultimedia.com EB004 Contents About this document 3 Board layout 3 General information 4 Circuit description 4 Protective cover 4 Circuit diagram 5 2 Copyright About this document This

More information

Aman Khan - SID Dr. Karl Hedrick Dr.Samveg Saxena & Alyssa Scheske. May 18, 2015

Aman Khan - SID Dr. Karl Hedrick Dr.Samveg Saxena & Alyssa Scheske. May 18, 2015 University of California, Berkeley Mechanical Engineering Department GPS Hardware for Vehicle to Grid Simulation & MyGreenCar System ME 196 Final Report Aman Khan - SID 24767521 Dr. Karl Hedrick Dr.Samveg

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

P89V51RD2 Development Board May 2010

P89V51RD2 Development Board May 2010 P89V51RD2 Development Board May 2010 NEX Robotics Pvt. Ltd. 1 P89V51RD2 Development Board Introduction: P89V51RD2 Development Board P89V51RD2 Development Board is a low cost development board which have

More information

Introduction to microcontrollers

Introduction to microcontrollers Page 1 Page 2 Contents Introduction 2 Worksheet 1 - Switch on the LED 3 Worksheet 2 - Make the LED flash 5 Worksheet 3 - Keep the LED lit for a short time 7 Worksheet 4 - Set up a latch 9 Worksheet 5 -

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

GPS MOBILE LOCATOR USER S MANUAL

GPS MOBILE LOCATOR USER S MANUAL GM-48S-USB < USB > GPS MOBILE LOCATOR USER S MANUAL Contents INTRODUCTION & APPLICATIONS.........3 PACKAGE CONTENTS.4 GETTING STARTED.. 5 OPERATING PROCEDURE.. 6 SPECIFICATION.....7 APPENDIX... 8 WARRANTY..9

More information

8S RS232/422/485 Combo to USB2.0 Module Box Installation Guide

8S RS232/422/485 Combo to USB2.0 Module Box Installation Guide Installation Guide Congratulation on your purchasing this high performance 8-port RS232/422/485 Combo to USB2.0 Module Box. The product includes a metal module box and a USB cable. Each box has an upstream

More information

M32 Development Board

M32 Development Board M32 Development Board User Guide Document Control Information This Document Release Date: 12th March 2006 This Document Version: 1.0 Document History Author Release Date Reference Release Notes JSL 23rd

More information

Sequential Event Recorder

Sequential Event Recorder DESCRIPTION Sequential Event Recorder Product Specifications and Installation Data The Sequential Event Recorder (SER) is an intelligent Genius I/0 block that resides directly on the Genius LAN. The primary

More information

Programmer. User Guide

Programmer. User Guide Programmer User Guide Trademarks & Copyright Windows and Windows NT are registered trademarks of Microsoft Corporation. MCS-51 and Pentium are registered trademarks of Intel Corporation. AVR is registered

More information

LCD05 datasheet 1.0

LCD05 datasheet 1.0 LCD05 green displays LCD05 blue displays The I2C and serial display driver provides easy operation of a standard 20 x 4 or 16 x 2 LCD Text display. It requires only a 5v power supply and the two data connections

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

iclass Reader (RevA) PIC 18F452/18F6621 RAM Dumper Operating Instructions

iclass Reader (RevA) PIC 18F452/18F6621 RAM Dumper Operating Instructions iclass Reader (RevA) PIC 18F452/18F6621 RAM Dumper Operating Instructions Proxclone.com Revision 2.0 December2015 Overview The RAM dumper circuit is used in conjunction with a HID iclass RevA reader to

More information

VINCULUM-BASED TEMPERATURE / HUMIDITY / VOLTAGE DATA LOGGER FEATURES:

VINCULUM-BASED TEMPERATURE / HUMIDITY / VOLTAGE DATA LOGGER FEATURES: DLP-VLOG *LEAD-FREE* VINCULUM-BASED TEMPERATURE / HUMIDITY / VOLTAGE DATA LOGGER FEATURES: Virtually Unlimited Data Storage Utilizing FTDI s New Vinculum USB Host IC Data Logged to USB Flash Drive Low-Power

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

32 bit Micro Experimenter Board Description and Assembly manual

32 bit Micro Experimenter Board Description and Assembly manual 32 bit Micro Experimenter Board Description and Assembly manual Thank you for purchasing the KibaCorp 32 bit Micro Experimenter. KibaCorp is dedicated to Microcontroller education for the student, hobbyist

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