Code Monkey home page Code Monkey logo

uldaq's Introduction

MCC Universal Library for Linux (uldaq)

Info: Contains a library to access and control supported Measurement Computing DAQ devices over the Linux platform. The UL for Linux binary name is libuldaq.

Author: Measurement Computing

About

The uldaq package contains programming libraries and components for developing applications using C/C++ on Linux Operating Systems. An API (Application Programming Interface) for interacting with the library in Python is available as an additional installation. This package was created and is supported by MCC.

Prerequisites:


Building the uldaq package requires C/C++ compilers, make tool, and the development package for libusb. The following describes how these prerequisites can be installed on different Linux distributions.

  • Debian-based Linux distributions such as Ubuntu, Raspbian
   $ sudo apt-get install gcc g++ make
   $ sudo apt-get install libusb-1.0-0-dev
  • Arch-based Linux distributions such as Manjaro, Antergos
   $ sudo pacman -S gcc make
   $ sudo pacman -S libusb
  • Red Hat-based Linux distributions such as Fedora, CentOS
   $ sudo yum install gcc gcc-c++ make
   $ sudo yum install libusbx-devel
  • OpenSUSE
   $ sudo zypper install gcc gcc-c++ make
   $ sudo zypper install libusb-devel

Build Instructions


  1. Download the latest version of uldaq:
  Linux
     $ wget https://github.com/mccdaq/uldaq/releases/download/v1.0.0/libuldaq-1.0.0.tar.bz2
  1. Extract the tar file:
  $ tar -xvjf libuldaq-1.0.0.tar.bz2
  1. Run the following commands to build and install the library:
  $ cd libuldaq-1.0.0
  $ ./configure && make
  $ sudo make install

Note: To install the Python interface, follow the above build instructions then go to https://pypi.org/project/uldaq/ for further installation.

Examples

The C examples are located in the examples folder. Run the following commands to execute the analog input example:

  $ cd examples
  $ ./AIn

Refer to the uldaq PyPI page for instructions on installing Python examples.

Usage

The following is a basic C example of using the Universal Library for Linux to perform analog input. Further examples are available in the Examples folder.

#include <stdio.h>
#include "uldaq.h"

#define MAX_DEV_COUNT  100
#define MAX_STR_LENGTH 64

int main(void)
{
	unsigned int numDevs = MAX_DEV_COUNT;
	DaqDeviceDescriptor devDescriptors[MAX_DEV_COUNT];
	DaqDeviceHandle handle = 0;

	int chan = 0;
	double data = 0;
	UlError err = ERR_NO_ERROR;

	// Get descriptors for all of the available DAQ devices
	ulGetDaqDeviceInventory(ANY_IFC, devDescriptors, &numDevs);
	
	// verify at least one DAQ device is detected
	if (numDevs)
	{
		// get a handle to the DAQ device associated with the first descriptor
		handle = ulCreateDaqDevice(devDescriptors[0]);

		// check if the DAQ device handle is valid
		if (handle)
		{
			// establish a connection to the DAQ device
			err = ulConnectDaqDevice(handle);

			// read data for the first 4 analog input channels
			for (chan = 0; chan <= 3; chan++)
			{
				err = ulAIn(handle, chan, AI_SINGLE_ENDED, BIP5VOLTS, AIN_FF_DEFAULT, &data);

				printf("Channel(%d) Data: %10.6f\n", chan, data);
			}

			ulDisconnectDaqDevice(handle);
			ulReleaseDaqDevice(handle);
		}
	}

	return 0;
}

Support/Feedback

The uldaq package is supported by MCC. For support for uldaq, contact technical through support page. Please include detailed steps on how to reproduce the problem in your request.

Documentation

Online help for the Universal Library for Linux is available for C/C++ and Python.

If Doxygen is installed and you wish to build the API documentation on your system, run the following commands:

  $ cd doc
  $ doxygen Doxyfile

uldaq's People

Contributors

sbazaz avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.