OS - Linux: Difference between revisions

From Phidgets Support
No edit summary
No edit summary
 
(435 intermediate revisions by 12 users not shown)
Line 1: Line 1:
Phidgets can run on Linux directly using USB, or remotely over a network using the [[Phidget Webservice]].  You need kernel '''version 2.6''' or later.
<metadesc>Communicate over USB with sensors, controllers and relays with Phidgets! Program in Linux using a wide variety of programming languages.</metadesc>
[[Category:OS]]


==Getting Started==
==Getting Started with Linux==
Welcome to using Phidgets with Linux!


#Download '''libusb-0.1''' and its development libraries
===Install===
#*Try <code>apt-cache search libusb</code> in a terminal to find current packages
The first step to using Phidgets with Linux is installing the Phidget22 libraries.
#*Or install [http://www.libusb.org/ from source], which includes development libraries
#Download <span style="color:red">Phidget Libraries</span> for Linux
#*Unpack them, and in the main directory run:
#*:<code>./configure</code>
#*:<code>make</code>
#*:<code>sudo make install</code>
#*This will compile phidget21.h and place the library into your gcc path
#Download the <span style="color:red;">Phidget C Examples</span> and unpack them
#Compile and run the <code>HelloWorld.c</code> example:
<div style="background-color: #f3f3f3; border-color: #1c9edb; border-width:1px; border-style: dashed;">
<font size="3">
<source lang=bash>


    gcc HelloWorld.c -o HelloWorld -lphidget21
We provide prebuilt packages for Debian, Ubuntu, and their derivatives.
    sudo ./HelloWorld


</source>
If you're running a supported distros, we recommend using the '''Package Install'''. For other systems, you can use the '''Source Install'''.
</font>
 
<div class="bigTabs">
<tabber>
|-|Package Install=
{{LinuxPackageInstall}}
 
|-|Source Install=
====Source Install====
To install our libraries, first install libusb-1.0 development libraries. The exact command and package name will vary depending on distribution. For Debian based distributions, including Ubuntu and Mint, the command would be:
<syntaxhighlight lang=bash>
apt install libusb-1.0-0-dev
</syntaxhighlight>
 
 
Next, download and unpack the following files:
*[https://cdn.phidgets.com/downloads/phidget22/libraries/linux/libphidget22.tar.gz libphidget22] (Mandatory)
*[https://cdn.phidgets.com/downloads/phidget22/libraries/linux/libphidget22extra.tar.gz libphidget22extra] (Optional - needed by NetworkServer and Admin)
*[https://cdn.phidgets.com/downloads/phidget22/libraries/linux/libphidget22java.tar.gz libphidget22java] (Optional - Java Libraries)
*[https://cdn.phidgets.com/downloads/phidget22/servers/linux/phidget22networkserver.tar.gz phidget22networkserver] (Optional - [[Phidget Network Server]])
*[https://cdn.phidgets.com/downloads/phidget22/tools/linux/phidget22admin.tar.gz phidget22admin] (Optional - Phidget Admin Tool)
Open the README file that is included at the top of each directory. This file will give you important information about how to properly install the files.
 
 
Libraries are installed in /usr/local/lib by default. If you run into trouble finding the libraries during linking or at runtime, this probably means that /usr/local/lib is not on the library path for your distribution.
 
You can handle this in a number of ways:
 
Specify a different install folder during compile
<syntaxhighlight lang=bash>./configure --prefix=/usr && make && sudo make install</syntaxhighlight>
OR Add /usr/local/lib to the system-wide library path
<syntaxhighlight lang=bash>echo /usr/local/lib >> /etc/ld.so.conf && sudo ldconfig</syntaxhighlight>
OR Add /usr/local/lib in your local shell every time
<syntaxhighlight lang=bash>export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib</syntaxhighlight>
 
The libraries are now installed on your machine. Next, you should set the UDev Rules.
</tabber>
</div>
</div>
:(The sudo is needed for USB access for now)


The program will simply print out basic information for any device you plug in, and print a message upon unplugging the deviceFor example, starting the program, plugging in an Interface Kit, unplugging the Interface Kit, and pressing Enter displays:
=== Setting UDev Rules ===
By default, Linux will not grant permission to regular users to access physical hardware as a security feature.  This means that in order to run Phidgets code from user space you must grant yourself root privileges via sudo.  For example:
 
sudo ./HelloWorld
 
You can grant access manually or, more commonly, set up a rules file to do it automatically keying off of the vendor code for Phidget USB devicesTo do this, create a text file called "99-libphidget22.rules" with the following contents:
<syntaxhighlight lang=bash>
# All current and future Phidgets - Vendor = 0x06c2, Product = 0x0030 - 0x00af
SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="06c2", ATTRS{idProduct}=="00[3-a][0-f]", MODE="666"
</syntaxhighlight>
 
Where mode 666 means every user has permission to read and write to the specified file/device.  You need to then move this file to "/etc/udev/rules.d".  Now you can run Phidget related code as a regular user without the OS denying permission.
 
===Verify===
The best way to verify that your libraries are working properly is to compile and run an example program.
 
 
First, download and unpack this C example:
*[https://cdn.phidgets.com/downloads/phidget22/examples/c/Manager/Phidget22_HelloWorld_C_Ex.zip HelloWorld C example]


<div style="background-color: #f3f3f3; border-color: #1c9edb; border-width:1px; border-style: dashed;">
'''Note:''' If using the Debian intallation methods, you will need to install the '''libphidget22-dev''' package to use the C libraries for Phidget22
<font size="3">
<source lang=bash>


  $ sudo ./HelloWorld
Next, open the terminal at the example location. Compile the example by entering the following command:
 
<syntaxhighlight lang=bash>
  Opening...
gcc HelloWorld.c -o HelloWorld -lphidget22
  Press Enter to end
</syntaxhighlight>


  Hello to Device Phidget InterfaceKit 8/8/8, Serial Number: 37299
  Goodbye Device Phidget InterfaceKit 8/8/8, Serial Number: 37299


  Closing...
Run the HelloWorld example:
<syntaxhighlight lang=bash>
./HelloWorld
</syntaxhighlight>


</source>
</font>
</div>


==Recommended Languages==
Your terminal should look something like this:
We recommend the following languages for this OS:
[[File:linux_helloworld.PNG|link=|center]]


*[[Language - C/C++|C/C++]]
*[[Language - C Sharp | C#]] (Using Mono)
*[[Language - Flash AS3 | Flash AS3]]
*[[Language - Java | Java]]
*[[Language - Python | Python]]


==Installing Libraries and Drivers==
The HelloWorld program will simply communicate when a Phidget has been attached or detached, as can be seen in the image above.
You can download the newest source below:
*[http://www.phidgets.com/downloads/libraries/libphidget_2.1.8.20110615.tar.gz Phidget21 Source]
*[http://www.phidgets.com/downloads/libraries/phidgetwebservice_2.1.8.20110615.tar.gz Phidget Webservice]


Phidgets requires Linux Kernel 2.6 or newer.


Once you've downloaded the source, build Phidget21.
Your Phidget is now able to communicate with your development machine. The next step is selecting a programming language so you can start to write some code!


There is no Phidgets Control Panel written for Linux, but there are [[Language - C/C++|C/C++]] and [[Language - Java | Java]] code samples are available for all Phidgets which will compile and run on Linux without modification.
==Programming==
Ready to write some code? Select one of the programming languages below:


Notes:
{{Programming_Languages_Table}}
* Many Linux systems are now built with unsupported third party drivers.  It may be necessary to uninstall these drivers for our libraries to work properly.
**<span style="color:red">I don't think this is true. If you mean libusb, you need to install the 'libusb-dev' package. If you mean the kernel drivers - these don't interfere and are safe.</span>
* Phidget21 for Linux is a user-space library.  Applications typically have to be run as root, or udev/hotplug must be configured to give permissions when the Phidget is plugged in.


==Common Problems and Solutions==
==Older Versions==
If you need older versions of the Phidget22 Linux libraries, [{{SERVER}}/downloads/phidget22/libraries/linux/libphidget22/ click here].


*List relevant problems from "Common Problems and workarounds" doc
If you need Phidget21 Linux Libraries, [{{SERVER}}/downloads/phidget21/libraries/linux/libphidget/ click here].
*List common problems for this OS from support forums


==Limitations==
==Software License==
List any limitations associated with running Phidgets with this OS.
By downloading Linux Source you agree to adhere to the terms of the [https://opensource.org/licenses/BSD-3-Clause The 3-Clause BSD License].

Latest revision as of 18:28, 20 January 2025


Getting Started with Linux

Welcome to using Phidgets with Linux!

Install

The first step to using Phidgets with Linux is installing the Phidget22 libraries.

We provide prebuilt packages for Debian, Ubuntu, and their derivatives.

If you're running a supported distros, we recommend using the Package Install. For other systems, you can use the Source Install.

We recommend installing with our Install Script. If you prefer not to run a script, or the script cannot detect your distro, use the Manual Install.

To run the install script and install phidget22, enter the following command in the terminal:

curl -fsSL https://www.phidgets.com/downloads/setup_linux | bash -
apt install -y libphidget22

curl -fsSL https://www.phidgets.com/downloads/setup_linux | sudo -E bash -
sudo apt install -y libphidget22

If the curl command is not found: apt install curl and try again.

To install our package repository manually, enter the following command in the terminal, replacing distro with your distro codename:

We support Debian releases from 6 to current, and Ubuntu LTS releases from 14.04 to current. If you are using another flavour of Linux (such as Mint), which is based on Ubuntu or Debian, use the corresponding Ubuntu or Debian codename.

Update your package lists:

apt update

sudo apt update

Finally, install the Phidget package by entering the command below:

apt install libphidget22

sudo apt install libphidget22

Additional Packages

You may also want to apt install the following optional packages:

  • libphidget22-dev: The C development libraries for Phidget22
  • libphidget22extra: Extra runtime library required for the Network Server and Admin tools
  • phidget22networkserver: The Phidget Network Server, which enables use of Phidgets over your network
  • libphidget22java: The Java libraries for Phidget22
  • phidget22admin: An administrator utility for listing Phidgets and upgrading firmware
  • phidget22wwwjs: The JavaScript libraries for Phidget22. This package also installs the HTML examples which can be accessed through the web interface


The libraries are now installed on your machine. Next, set up the UDev rules below.

Source Install

To install our libraries, first install libusb-1.0 development libraries. The exact command and package name will vary depending on distribution. For Debian based distributions, including Ubuntu and Mint, the command would be:

apt install libusb-1.0-0-dev


Next, download and unpack the following files:

Open the README file that is included at the top of each directory. This file will give you important information about how to properly install the files.


Libraries are installed in /usr/local/lib by default. If you run into trouble finding the libraries during linking or at runtime, this probably means that /usr/local/lib is not on the library path for your distribution.

You can handle this in a number of ways:

Specify a different install folder during compile

./configure --prefix=/usr && make && sudo make install

OR Add /usr/local/lib to the system-wide library path

echo /usr/local/lib >> /etc/ld.so.conf && sudo ldconfig

OR Add /usr/local/lib in your local shell every time

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

The libraries are now installed on your machine. Next, you should set the UDev Rules.

Setting UDev Rules

By default, Linux will not grant permission to regular users to access physical hardware as a security feature. This means that in order to run Phidgets code from user space you must grant yourself root privileges via sudo. For example:

sudo ./HelloWorld

You can grant access manually or, more commonly, set up a rules file to do it automatically keying off of the vendor code for Phidget USB devices. To do this, create a text file called "99-libphidget22.rules" with the following contents:

# All current and future Phidgets - Vendor = 0x06c2, Product = 0x0030 - 0x00af
SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="06c2", ATTRS{idProduct}=="00[3-a][0-f]", MODE="666"

Where mode 666 means every user has permission to read and write to the specified file/device. You need to then move this file to "/etc/udev/rules.d". Now you can run Phidget related code as a regular user without the OS denying permission.

Verify

The best way to verify that your libraries are working properly is to compile and run an example program.


First, download and unpack this C example:

Note: If using the Debian intallation methods, you will need to install the libphidget22-dev package to use the C libraries for Phidget22

Next, open the terminal at the example location. Compile the example by entering the following command:

 gcc HelloWorld.c -o HelloWorld -lphidget22


Run the HelloWorld example:

./HelloWorld


Your terminal should look something like this:

Linux helloworld.PNG


The HelloWorld program will simply communicate when a Phidget has been attached or detached, as can be seen in the image above.


Your Phidget is now able to communicate with your development machine. The next step is selecting a programming language so you can start to write some code!

Programming

Ready to write some code? Select one of the programming languages below:

Older Versions

If you need older versions of the Phidget22 Linux libraries, click here.

If you need Phidget21 Linux Libraries, click here.

Software License

By downloading Linux Source you agree to adhere to the terms of the The 3-Clause BSD License.