Notice: This page contains information for the legacy Phidget21 Library. Phidget21 is out of support. Bugfixes may be considered on a case by case basis. Phidget21 does not support VINT Phidgets, or new USB Phidgets released after 2020. We maintain a selection of legacy devices for sale that are supported in Phidget21. We recommend that new projects be developed against the Phidget22 Library.
|
Language - MATLAB: Difference between revisions
Line 7: | Line 7: | ||
==Quick Downloads== | ==Quick Downloads== | ||
Just need the MATLAB drivers, libraries, and examples? Here they are. | Just need the MATLAB drivers, libraries, and examples? Here they are. | ||
* [http://www.phidgets.com/downloads/examples/Matlab_2.1.8.20110615.zip MATLAB Sample Code], including the phidget21Matlab.lib library file to include in your MATLAB project directory. | |||
* [http://www.phidgets.com/documentation/Phidget21_C_Doc.zip C/C++ API Manual] | |||
MATLAB depends on the C/C++ libraries, and all MATLAB calls essentially call functions in the C library. So. you need the C/C++ drivers and libraries, and you may also find the C/C++ API reference handy: | |||
* [http://www.phidgets.com/downloads/ | |||
* | C/C++ API Documentation: | ||
* | *[http://www.phidgets.com/documentation/Phidget21_C_Doc.zip C/C++ API Manual Download] or [http://www.phidgets.com/documentation/web/cdoc/index.html (HTML online version)] | ||
*[[General API]] (more help on functions common to all Phidgets) | |||
*[[Device List | Device Specific APIs]] (more help on functions specific to your Phidget) | |||
Libraries and Drivers which MATLAB depends on: | |||
*[http://www.phidgets.com/downloads/libraries/phidget21-x86_2.1.8.20110615.zip 32 bit Windows (drivers, with libraries)] | |||
*[http://www.phidgets.com/downloads/libraries/phidget21-x64_2.1.8.20110615.zip 64 bit Windows (drivers, with libraries)] | |||
*[http://www.phidgets.com/downloads/libraries/libphidget_2.1.8.20111028.tar.gz General Linux Libraries] ([[OS - Linux | Linux Library Setup Instructions]]) | |||
*[http://www.phidgets.com/downloads/libraries/Phidget_2.1.8.20111103.dmg General Mac OSX Libraries] ([[OS - Mac OSX | Mac OSX Library Setup Instructions]]) | |||
You may want to have these pages open while working through these instructions. | You may want to have these pages open while working through these instructions. |
Revision as of 19:05, 16 November 2011
Support
If this is your first time working with a Phidget, we suggest starting with the Getting Started page for your specific device. This can be found in the user guide for your device. That page will walk you through installing drivers and libraries for your operating system, and will then bring you back here to use MATLAB specifically.
MATLAB is capable of using the non-event driven part of the Phidget API. We also provide example code in MATLAB for AdvancedServo, Encoder, InterfaceKit, Servo and Stepper.
MATLAB can be developed with any operating system that can run MATLAB code.{{{5}}}
You can compare MATLAB with our other supported languages.
Quick Downloads
Just need the MATLAB drivers, libraries, and examples? Here they are.
- MATLAB Sample Code, including the phidget21Matlab.lib library file to include in your MATLAB project directory.
MATLAB depends on the C/C++ libraries, and all MATLAB calls essentially call functions in the C library. So. you need the C/C++ drivers and libraries, and you may also find the C/C++ API reference handy:
C/C++ API Documentation:
- C/C++ API Manual Download or (HTML online version)
- General API (more help on functions common to all Phidgets)
- Device Specific APIs (more help on functions specific to your Phidget)
Libraries and Drivers which MATLAB depends on:
- 32 bit Windows (drivers, with libraries)
- 64 bit Windows (drivers, with libraries)
- General Linux Libraries ( Linux Library Setup Instructions)
- General Mac OSX Libraries ( Mac OSX Library Setup Instructions)
You may want to have these pages open while working through these instructions.
Getting Started
Run The Examples
The Phidget examples were written using MATLAB m-files.
Your project will need to be able to find the phidget21Matlab.h from the MATLAB examples. Copy phidget21Matlab.h to your project directory where you also put the .m file you want to run as an example.
Follow The Examples
The examples for each device all have this general structure so you can follow along. We also have an in-depth general introduction to writing Phidget code (like open, read data, etc), as well as the {{{2}}} for specific syntax:
// ----- Main Code ----- Create Device Software Object
Close Device
|
{{{1}}} |
Setting up the Libraries
Developing Code
Running Examples
One good way to start developing your application is to run and modify existing examples. You can find the MATLAB example code here:
To run the example code, you'll need to find the source code for your specific device within the example package. If your device does not have an example written for it, try the HelloWorld.m example. Then, run the code within MATLAB as you would any .m file. This will allow you to:
- Make sure your libraries are properly linked, as above
- Go from source code to a test application as quickly as possible
Write Your Own Code
General Library Setup
Before you can use the Phidget, you must include a reference to the library in the code in the main body of code. Copy phidget21Matlab.h to your project directory and then in MATLAB:
function phidgettest(n)
loadlibrary phidget21 phidget21Matlab.h;
% More code goes here
end
Create and Build Your Project
Programming with Phidgets makes extensive use of the calllib() function to the C/C++ library, so the C/C++ API reference will be helpful:
- C/C++ API (This is the complete set of functions you have available for all Phidgets)
- Device Specific APIs - The one for your Phidget can be found in its user guide.
To learn the details behind opening, configuring, using, and closing your Phidget, try the General Phidget Programming page. That page also describes using the Phidget in an event-driven manner and in a traditional manner, although you can only use the logic code type design in MATLAB.
Specific calls in MATLAB will differ in syntax from those on the General Phidget Programming page, but the concepts stay the same. If we were using a Phidget Interface Kit as our device, the general calls would look like this:
Step One: Initialize and Open:
ikptr = libpointer('int32Ptr',0);
calllib('phidget21', 'CPhidgetInterfaceKit_create', ikptr);
ikhandle = get(ikptr, 'Value');
The ikptr is converted to ikhandle as a handle of the PhidgetInterfacekit, and is used for all the C function calls where CPhidgetHandle phid is used. The object name for any type of Phidget is listed in the API manual. Every type of Phidget also inherits functionality from the Phidget base class.
Note that open() opens the software object, but not hardware. So, it is not a guarantee you can use the Phidget immediately.
The different types of open can be used with parameters to try and get the first device it can find, open based on its serial number, or even open across the network. The API manual lists all of the available modes that open provides.
Step Two: Wait for Attachment (plugging in) of the Phidget:
To use the Phidget, it must be plugged in (attached). We can handle this by calling waitForAttachment. WaitForAttachment will block indefinitely until a connection is made to the Phidget, or an optional timeout is exceeded:
calllib('phidget21', 'CPhidget_open', ikhandle, -1);
if calllib('phidget21', 'CPhidget_waitForAttachment', ikhandle, 2500) == 0
% Insert your code here
end
Step Three: Do Things with the Phidget:
The most common thing you might want to do is read data from sensors. MATLAB does not support event handling, so all data must be read and sent directly. Simply use the C API functions such as CPhidgetInterfaceKit_getSensorValue() or CPhidgetInterfaceKit_setOutState() for Interface Kits:
while n<10
dataptr = libpointer('int32Ptr',0);
calllib('phidget21', 'CPhidgetInterfaceKit_getSensorValue', ikhandle, 0, dataptr)
disp(get(dataptr, 'Value'));
n=n+1;
end
Here a pointer is created to mark a value from the InterfaceKit inside a polling loop, and then its value is displayed to screen.
Step Four: Close and Delete:
calllib('phidget21', 'CPhidget_close', ikhandle);
calllib('phidget21', 'CPhidget_delete', ikhandle);
At the end of your program, don’t forget to call close to free any locks on the Phidget that the open() call put in place!
The complete set of functions you have available for all Phidgets can be found in the C/C++ API. Note, however, MATLAB does not make use of the event functions in the C/C++ API
If you are looking for more information about a particular function, we provide that as well. You can find more description on any function either in:
- Our API Overview which describes the set of calls common to all Phidgets, or
- The Device API page for calls available only on your specific Phidget.
Development Environments and Compilers
There could be differences between MATLAB and Octave (open source MATLAB). |
Common Problems and Solutions/Workarounds
Here you can put various frequent problems and our recommended solutions.