Examples

Basic Interface

Simply use these commands to start an interface:

# Imports
from ZeoRawData.BaseLink import BaseLink
from ZeoRawData.Parser import Parser

# Initialize
link = BaseLink(portName)
parser = Parser()

# Add the Parser to the BaseLink's callback
link.addCallback(parser.update)

# Add your callback functions
parser.addEventCallback(eventCallback)
parser.addSliceCallback(sliceCallback)

# Start link
link.start()

GUI Viewer

_images/GUIScreenshot.jpg

Additional Dependencies

Download the GUI_Viewer.zip file: GUI_Viewer

This GUI is designed to simply show you all of the data currently output by the library.

How to Use:

  1. Install the Zeo Raw Data Library, Qt4, and Matplotlib
  2. Plug serial cable into Zeo and the computer
  3. Run the ZeoDisplayGUI.pyw file

Table Of Contents

Previous topic

Zeo Raw Data API

This Page