Skip to main content

API for the Attys DAQ box (www.attys.tech)

Project description

Attys is a lightweight bluetooth DAQ box which can measure anything from temperature to ECG.

http://www.attys.tech

Required packages under Linux

For Ubuntu Linux install attyscomm attyscomm-dev:

sudo add-apt-repository ppa:berndporr/attys
sudo apt-get update
sudo apt-get install attyscomm attyscomm-dev

For other Linux flavours install them from souce:

https://github.com/glasgowneuro/AttysComm/tree/master/cpp

Quick start guide

Here are the basic steps how to use the API:

# load the module
import pyattyscomm

# Gets the AttysScan class which scans for Attys via bluetooth
s = pyattyscomm.AttysScan()

# Scan for Attys
s.scan()

# get the 1st Attys
c = s.getAttysComm(0)

# if an attys has been found c points to it. Otherwise it's None.

# Start data acquisition in the background
c.start()

# Now we just read data at our convenience in a loop or timer or thread
# if data is available you can read it from the ringBuffer

while (not c.hasSampleAvilabale()):
      # do something else or nothing

# getting a sample (array of all Attys channels)
sample = c.getSampleFromBuffer()

# do something with the sample
print(sample)

# rinse and repeat!

API documentation

Query it via the python help system:

import pyattyscomm
help(pyattyscomm.AttysScan)
help(pyattyscomm.AttysComm)

The Python classes have been generated with SWIG. The header files AttysComm.h and AttysScan.h provide detailed info about the classes:

https://github.com/glasgowneuro/AttysComm/tree/master/cpp

Demos

On github are two python demos: one which prints the ADC data to the screen and one which plots it with matplotlib.

https://github.com/glasgowneuro/AttysComm/tree/master/demo

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyattyscomm-1.3.0.0.tar.gz (61.8 kB view hashes)

Uploaded Source

Built Distributions

pyattyscomm-1.3.0.0-py3.6-win-amd64.egg (58.5 kB view hashes)

Uploaded Source

pyattyscomm-1.3.0.0-py3.6-linux-x86_64.egg (233.2 kB view hashes)

Uploaded Source

pyattyscomm-1.3.0.0-cp36-cp36m-win_amd64.whl (50.9 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page