What is a Phidget?: Difference between revisions

From Phidgets Support
No edit summary
(28 intermediate revisions by 5 users not shown)
Line 1: Line 1:
[[Category:Overview]]
[[Category:Overview]]
__NOTOC__
At Phidgets, our philosophy is that you don't have to be an electrical engineer in order to create sophisticated projects using motors, sensors and other electronics. You simply need to know how to code.


==Introduction==


<font size="+1"><b>Phidgets</b></font> are <font size="+1" color="#336633">building-block tools</font> for <font size="+1" color="#772222">sensing and control</font> from a <font size="+1" color="#222299">computer, tablet, or phone</font>.
Phidgets are building-blocks for sensing and control using a computer, tablet, or phone. Phidgets enable your software application to interact with the physical world.


[[File:HUB0000 with LED Image.jpg|link=|250px]]  [[File:RFID Image.jpg|link=|250px]]  [[File:STC1000 with Motor Image.jpg|link=|300px]]


In the programming language of your choice, you create applications that use Phidgets to interact with the physical world.
[[File:NoBreadboard.jpg|right|link=|180px]]


Phidgets connect to a USB port of a computer:


[[Image:wiap-image1.jpg|500px|link=|alt=]]
The advantage of using Phidgets is that all Phidgets can be plugged in and used in your project out of the box, without having to follow complex pinout diagrams or configure communication between the device and computer. With Phidgets, we deal with the details of getting the electronics behaving as they should, so you can focus on the programming and details of your final product.
<br clear="all">
==Hardware Introduction==


 
Phidgets connect via a USB port:
----
[[Image:wiap-image1.jpg|500px|link=|alt=|center]]
 
 
Some Phidgets are a ''complete, self-contained sensing package''. 
 
One example is our '''Spatial''', which measures motion:
 
[[Image:wiap-image2-spatial.jpg|500px|link=|alt=]]
 
 
 
 
Or, a Phidget may be a ''building block to use other sensors''. 
One example is our '''Temperature Sensor''', which allows use of wire thermocouples:
 
[[Image:wiap-image2-temp.jpg|700px|link=|alt=]]
 
 
 
 
Or, a Phidget may be a flexible ''I/O (input/output) board'' which can record and control analog sensors and digital inputs and outputs. 
One example is our '''Interface Kit''' 8/8/8, with eight ports of each type:
 
[[Image:wiap-image2-ifkt.jpg|700px|link=|alt=]]
 
 
 
 
Last but not least, a Phidget may be a [[What_is_VINT?|VINT Hub]], whose versatile ports can be used as inputs or outputs, and can also connect to smart [[What_is_VINT?|VINT]] devices.
 
[[Image:wiap-vint.jpg|700px|link=|alt=]]
 
 
 
 
Other Phidgets and products we sell include:
* Sensors, which plug into an [[Phidgets Connectors|Analog Input or VINT Hub Port]]
* [{{SERVER}}/?tier=1&catid=17&pcid=16 Motors], [{{SERVER}}/?tier=1&catid=63&pcid=56 switches], [{{SERVER}}/?tier=1&catid=60&pcid=53 LEDs], and other components
* [{{SERVER}}/?tier=1&catid=1&pcid=0 Single Board Computer] - a complete embedded computer, plus Phidget I/O.
 
==Data Flow==
 
Data and control flows up and down the USB connection:
 
 
[[Image:wiap-dataflow.jpg|700px|link=|alt=]]
 
 
 
 
You can use ''more than one Phidget at a time'' to control motors, measure motion, and much, much more.  You can also use multiple sensors, inputs, and outputs on our I/O boards. 
 
Combining these abilities lets you build extensive systems that can sense the environment and react to it.
 
==Programming==
 
Using Phidgets means writing code.  Within your code, you can create a software object to access our full Phidget library API to access each type of Phidget and use its functions.
 
The software object sends and receives data to and from the Phidget:
 
[[Image:wiap-image4.png|500px|link=|alt=]]
 
The software object might be a {{Code|VoltageInput}} for the sensors attached to an Interface Kit, or a {{Code|RFID}} for an RFID reader, for example.




----
----


 
Some Phidgets are a complete, self-contained sensing package. An example is the [{{SERVER}}/products.php?product_id=1042 1042]
We provide support for many different languages to program in:
, which measures motion:
 
[[Image:wiap-image2-spatial.jpg|500px|link=|alt=|center]]
{| style="border:1px solid darkgray;" cellpadding="5px;"
|-style="background: #f0f0f0" align=center
|-
 
|'''Core Languages''' || |'''Mobile Languages''' || |'''Other Languages'''
|-
|[[Image:Icon-CSharp.png|alt=C Sharp|24x24px|link=Language - C Sharp]] [[Language - C Sharp|C#]] || [[Image:Icon-ObjC.png|24x24px|alt=Objective C|link=Language - Objective C]] [[Language - Objective C|Objective C]] || [[Image:Icon-LabVIEW.png|alt=LabVIEW|24x24px|link=Language - LabVIEW]] [[Language - LabVIEW|LabVIEW]]
|-
|[[Image:Icon-C++.png|alt=C/C++|24x24px|link=Language - C/C++]] [[Language - C/C++|C/C++]] || |[[Image:Icon-Swift.png|alt=Swift|24x24px|link=Language - Swift]] [[Language - Swift|Swift]] || |[[Image:Icon-MaxMSP.png|24x24px|alt=Max/MSP|link=Language - Max/MSP]] [[Language - Max/MSP|Max/MSP]]
|-
|[[Image:Icon-Python.png|alt=Python|24x24px|link=Language - Python]] [[Language - Python|Python]]
|-
|[[Image:Icon-Java.png|alt=Java|24x24px|link=Language - Java]] [[Language - Java|Java]]
|-
|[[Image:Icon-Visual Basic Net.png|alt=Visual Basic .NET|24x24px|link=Language - Visual Basic .NET]] [[Language - Visual Basic .NET|Visual Basic .NET]]
|-
|[[Image:Icon-Javascript.png|alt=JavaScript|24x24px|link=Language - JavaScript]] [[Language - JavaScript|JavaScript]]
|-
|}
 
You can visit the [[Software Overview]] page for more information on the supported programming languages.
 
 
Writing code for your Phidget can be as simple as creating a handle, opening it, getting a sensor value, and printing it.
 
A simple, stripped-down program in C to read the the value of a sensor connected to an Interface Kit might look like this:
 
<syntaxhighlight lang=cpp>
#include <stdio.h>
#include <phidget22.h>
 
int main(int argc, char* argv[]) {
    // A "VoltageInput" Handle; the name we use to access properties and methods of the channel
  VoltageInput vin;
 
    // Our Sensor's voltage Reading
    int sensorVoltage;
 
    // Create a new VoltageInput object
    vin = new VoltageInput();
   
    // Set the channel to the port the sensor is plugged into on the InterfaceKit
    vin.Channel = 0;
 
    // Open and attach the Phidget, waiting 5 seconds before timeout
    vin.Open(5000);
 
    // Read Sensor on Port 0
    sensorVoltage = vin.Voltage;
 
    printf("Hello World!  My channel 0 sensor reads %d volts.\n", sensorVoltage);
 
    // Close
    vin.Close();
    return 0;
}
</syntaxhighlight>
 
The Phidget library includes powerful logging and error checking not shown in this brief program. To see some full-featured example programs, check the [[Software_Overview#Language_Support|downloads section]] for the language of your choice.




----
----


 
Other Phidgets are a 'building block' to use other sensors. An example is the [{{SERVER}}/products.php?product_id=1048 1048] which allows the use of wire thermocouples:
Our software libraries are modular.  A {{Code|VoltageInput}} software object, for example, has functions you can use to control and read the Voltage Input, such as setting the data interval or reading the voltage:
[[Image:wiap-image2-temp.jpg|700px|link=|alt=|center]]
 
 
[[Image:voltageInput_object.jpg|300px|link=|alt=]]
 
 
The API for each Phidget contains multiple of these objects. For example, the [http://www.phidgets.com/products.php?product_id=1018 1018 Phidget InterfaceKit] uses five distinct objects:
 
 
[[Image:1018_objects.jpg|600px|link=|alt=]]
 
 
The {{Code|Phidget Common}} object contains basic functions like {{Code|open()}} and {{Code|close()}} and is used by every Phidget. It's the same no matter what Phidget you're using. The other objects will also contain largely the same functions, properties, and events across different Phidgets, although there may be minor differences which are explained in the API manual. For example, the [http://www.phidgets.com/products.php?product_id=1024 1024 PhidgetRFID Read/Write] has a {{Code|DigitalOutput}} object which is just like the one for the [http://www.phidgets.com/products.php?product_id=1018 1018 Phidget InterfaceKit]:
 
 
[[Image:1024_objects.jpg|400px|link=|alt=]]




Line 168: Line 35:




Not only can you control a Phidget locally, but we also provide a tool called the [[Phidget Network Server]].
Finally, a Phidget may be a [{{SERVER}}/products.php?product_id=HUB0000 VINT Hub], made up of versatile ports that can be used as inputs or outputs, and also connect to smart [[What_is_VINT?|VINT]] devices.
[[Image:wiap-vint.jpg|700px|link=|alt=|center]]


The Network Server broadcasts your Phidget's channels over your local network:
==Programming==
 
[[Image:NetworkServer_Local_Remote.jpg|link=|800px]]


This allows other computers on your network to control the Phidget or read data from it. The network server isn't limited to desktop computers- it can also be used with phones or [[OS_-_PhidgetSBC|Single Board Computers]] that are running Phidgets code.
For the most part, using Phidgets requires writing software. The '''Phidgets API''' is available in many different programming languages:


{{Programming Languages Table}}


The Network Server also includes the [[Phidget Dictionary]], which is a central place to store your data in key-value pairs.
The Phidget software libraries are supported on a number of operating systems:
 
 
 
----
 
 
Your Phidgets program can run under any of the major operating systems. With the Network Server, you can even use operating systems that don't normally have USB ports, such as Android and IOS:
 
{| style="border:1px solid darkgray;" cellpadding="7px;"
{| style="border:1px solid darkgray;" cellpadding="7px;"
|-style="background: #f0f0f0" align=center  
|-style="background: #f0f0f0" align=center  
Line 192: Line 51:
|'''Desktop OSes''' || |'''Mobile/Wireless OSes'''
|'''Desktop OSes''' || |'''Mobile/Wireless OSes'''
|-
|-
|[[Image:Icon-Windows.png|alt=OS - Windows|24x24px|link=OS - Windows]][[OS - Windows|Windows]] || |[[Image:Icon-Linux.png|alt=OS - Phidget SBC|24x24px|link=OS - Phidget SBC]][[OS - Phidget SBC|Phidget SBC]]
|[[Image:Icon-Windows.png|alt=OS - Windows|24x24px|link=OS - Windows]][[OS - Windows|Windows]] || |[[Image:Icon-Phidgets.png|alt=OS - Phidget SBC|24x24px|link=OS_-_Phidget_SBC]][[OS_-_Phidget_SBC|Phidget SBC]]
|-
|[[Image:Icon-Mac-OS.png|alt=OS - OS X|24x24px|link=OS - OS X]][[OS - OS X|OS X]] || [[Image:Icon-Android.png|alt=OS - Android|link=OS - Android|24x24px|link=OS - Android]][[OS - Android|Android]]
|-
|-
|[[Image:Icon-Linux.png|alt=OS - Linux|24x24px|link=OS - Linux]][[OS - Linux|Linux]] || [[Image:Icon-iOS.png|alt=OS - iOS|link=OS - iOS|24x24px|link=OS - iOS]][[OS - iOS|iOS]]   
|[[Image:Icon-Linux.png|alt=OS - Linux|24x24px|link=OS - Linux]][[OS - Linux|Linux]] || [[Image:Icon-iOS.png|alt=OS - iOS|link=OS - iOS|24x24px|link=OS - iOS]][[OS - iOS|iOS]]   
|-
|-
|[[Image:Icon-Mac-OS.png|alt=OS - OS X|24x24px|link=OS - OS X]][[OS - OS X|OS X]] || [[Image:Icon-Android.png|alt=OS - Android|link=OS - Android|24x24px|link=OS - Android]][[OS - Android|Android]]
|}
|}


With the Network Server, you can even mix and match multiple operating systems to control one Phidget. For example, you could connect your Phidgets to a PhidgetSBC running Linux, and control it over the Network Server using an Android tablet.
== Network Server ==
 
 
----
 
 
The Phidget Library gives the option of using software events, rather than just reading values.
 
With events, you can let the data come to you as it changes:
 
[[Image:wiap-image7.png|650px|link=|alt=]]
 
This allows clean integration with GUI programs, which are usually already event-driven.
 
----
 
The library also includes support for using (and distinguishing between) more than one Phidget in your code - even the same type of Phidget.
 
This is usually done by reference to the unique serial number of each Phidget, as here in a Python code example:
 
[[Image:wiap-image8.png|650px|link=|alt=]]
 
There are other ways to do this, such as setting your own labels, or using our [[Phidget Manager]] to detect attached Phidgets.
 
 
----


Using the Phidgets API, applications on remote computers, phones, and [[OS_-_Phidget_SBC|Single Board Computers]] can attach to Phidget devices over the network as if they were local.  This includes WWW based applications using the Phidget JavaScript library.
[[Image:NetworkServer_PhidgetServer.jpg|link=|800px|center]]


== Further Reading ==
With the combination of events, modular sensors, and network support, your system can range from simple to incredibly complex.
With the combination of events, modular sensors, and network support, your system can range from simple to incredibly complex.


We encourage customers to not only build projects for themselves, but also to design and build real-world products using Phidgets.  Our libraries can be distributed with your code to your customers.
We encourage customers to not only build projects for themselves, but also to design and build real-world products using Phidgets.  Our libraries can be distributed with your code to your customers.
And this can all occur with the same devices, and the same flexible software API.


Want to learn more?  Check out our:
Want to learn more?  Check out our:
* [{{SERVER}} Products on our main website]
* [{{SERVER}} Products on our main website]
* [[Software Overview | Languages and Operating Systems]]
* [[Phidget Programming Basics]]
* [{{SERVER}}/?view=articles Example Projects and Articles]
* [{{SERVER}}/?view=articles Example Projects and Articles]
* [[:Category:Primer|In-depth hardware information]]


Questions?  Please {{ContactUs|contact us}}.
Questions?  Please {{ContactUs|contact us}}.

Revision as of 20:39, 28 February 2019


At Phidgets, our philosophy is that you don't have to be an electrical engineer in order to create sophisticated projects using motors, sensors and other electronics. You simply need to know how to code.


Phidgets are building-blocks for sensing and control using a computer, tablet, or phone. Phidgets enable your software application to interact with the physical world.

HUB0000 with LED Image.jpg RFID Image.jpg STC1000 with Motor Image.jpg

NoBreadboard.jpg


The advantage of using Phidgets is that all Phidgets can be plugged in and used in your project out of the box, without having to follow complex pinout diagrams or configure communication between the device and computer. With Phidgets, we deal with the details of getting the electronics behaving as they should, so you can focus on the programming and details of your final product.

Hardware Introduction

Phidgets connect via a USB port:



Some Phidgets are a complete, self-contained sensing package. An example is the 1042 , which measures motion:



Other Phidgets are a 'building block' to use other sensors. An example is the 1048 which allows the use of wire thermocouples:




Finally, a Phidget may be a VINT Hub, made up of versatile ports that can be used as inputs or outputs, and also connect to smart VINT devices.

Programming

For the most part, using Phidgets requires writing software. The Phidgets API is available in many different programming languages:

Core Languages Mobile Languages Other Languages
C Sharp C# Objective C Objective C LabVIEW LabVIEW
C/C++ C/C++ Swift Swift Max/MSP Max/MSP
Python Python Android Android Java
Java Java
Visual Basic .NET Visual Basic .NET
JavaScript JavaScript

The Phidget software libraries are supported on a number of operating systems:

Desktop OSes Mobile/Wireless OSes
OS - WindowsWindows OS - Phidget SBCPhidget SBC
OS - LinuxLinux OS - iOSiOS
OS - OS XOS X OS - AndroidAndroid

Network Server

Using the Phidgets API, applications on remote computers, phones, and Single Board Computers can attach to Phidget devices over the network as if they were local. This includes WWW based applications using the Phidget JavaScript library.

NetworkServer PhidgetServer.jpg

Further Reading

With the combination of events, modular sensors, and network support, your system can range from simple to incredibly complex.

We encourage customers to not only build projects for themselves, but also to design and build real-world products using Phidgets. Our libraries can be distributed with your code to your customers.

Want to learn more? Check out our:

Questions? Please contact us.