Phidget Network Server: Difference between revisions

From Phidgets Support
m (Mparadis moved page Phidget Network Service to Phidget Network Server without leaving a redirect)
No edit summary
Line 4: Line 4:
==General Overview==
==General Overview==


- what is the network service
- what is the network server


- how does it work
- how does it work
Line 16: Line 16:
- it can be mobile, too
- it can be mobile, too


==Network Service on a Phidget Single Board Computer==
==Network Server on a Phidget Single Board Computer==


The Phidget Single Board Computer (SBC) can provide a compact, inexpensive way to easily run the WebService.  It runs the WebService in the background automatically from the moment you turn it on, and allows you to read from and control all Phidgets attached to it:
The Phidget Single Board Computer (SBC) can provide a compact, inexpensive way to easily run the Network Server.  It runs the Network Server in the background automatically from the moment you turn it on, and allows you to read from and control all Phidgets attached to it:


<<picture of SBC setup>>
<<picture of SBC setup>>
Line 28: Line 28:
The SBC runs Linux, which provides a [[OS - Phidget SBC|full operating system]] on which to develop code, {{ARTICLE|WebPageOnSBC|serve web pages}}, and {{ARTICLE|PhidgetsWirelesslyWithSBC|control Phidgets}}.
The SBC runs Linux, which provides a [[OS - Phidget SBC|full operating system]] on which to develop code, {{ARTICLE|WebPageOnSBC|serve web pages}}, and {{ARTICLE|PhidgetsWirelesslyWithSBC|control Phidgets}}.


==Using The Network Service==
==Using The Network Server==


Each Operating System page has a section on how to use the Network Service on that operating system:
Each Operating System page has a section on how to use the Network Server on that operating system:


* [[OS - Windows#Phidget Network Service|Windows]]
* [[OS - Windows#Phidget Network Server|Windows]]
* [[OS - OS X#Phidget Network Service|Mac OS]]
* [[OS - OS X#Phidget Network Server|Mac OS]]
* [[OS - Linux#Phidget Network Service|Linux]]
* [[OS - Linux#Phidget Network Server|Linux]]
* [[OS - Phidget SBC#Phidget Network Service|Linux on the Phidget SBC]]
* [[OS - Phidget SBC#Phidget Network Server|Linux on the Phidget SBC]]
* [[OS - iOS#Phidget Network Service|iPhone/iPad iOS]]
* [[OS - iOS#Phidget Network Server|iPhone/iPad iOS]]


The operating systems pages have complete examples on how to set up a network service process and using it to remotely control or gather data from Phidgets. The pages also tell you how to start and stop the Network Service on your computer, and how to run it with or without mDNS (Bonjour, avahi, etc).
The operating systems pages have complete examples on how to set up a network server process and using it to remotely control or gather data from Phidgets. The pages also tell you how to start and stop the Network Server on your computer, and how to run it with or without mDNS (Bonjour, avahi, etc).


== Examples ==
== Examples ==
Below are some quick examples showing how simple it is to open a Phidget remotely over the Network Service:
Below are some quick examples showing how simple it is to open a Phidget remotely over the Network Server:


=== C/C++ ===
=== C/C++ ===
Line 67: Line 67:
== Troubleshooting ==
== Troubleshooting ==


When using the Network Service, both the '''client and server should have the ''same version''''' of the Network Service installed.  The easiest way to ensure this is to update your libraries on both ends.
When using the Network Server, both the '''client and server should have the ''same version''''' of the Network Server installed.  The easiest way to ensure this is to update your libraries on both ends.


For other troubleshooting tips, try our General Troubleshooting page, in its [[General_Troubleshooting#Network_Service_Troubleshooting|Network Service section]].
For other troubleshooting tips, try our General Troubleshooting page, in its [[General_Troubleshooting#Network_Server_Troubleshooting|Network Server section]].

Revision as of 19:27, 28 April 2017

General Overview

- what is the network server

- how does it work

<picture of normal phidgets setup>

<picture of setup with discovery enabled>

- how to set it up

- it can be mobile, too

Network Server on a Phidget Single Board Computer

The Phidget Single Board Computer (SBC) can provide a compact, inexpensive way to easily run the Network Server. It runs the Network Server in the background automatically from the moment you turn it on, and allows you to read from and control all Phidgets attached to it:

<<picture of SBC setup>>

This can allow for a compact, mobile-based system like this:

<<picture of SBC with mobile>>?

The SBC runs Linux, which provides a full operating system on which to develop code, serve web pages, and control Phidgets.

Using The Network Server

Each Operating System page has a section on how to use the Network Server on that operating system:

The operating systems pages have complete examples on how to set up a network server process and using it to remotely control or gather data from Phidgets. The pages also tell you how to start and stop the Network Server on your computer, and how to run it with or without mDNS (Bonjour, avahi, etc).

Examples

Below are some quick examples showing how simple it is to open a Phidget remotely over the Network Server:

C/C++

Phidget_setDeviceSerialNumber((PhidgetHandle) device, 37299);
Phidget_setIsRemote((PhidgetHandle) device, 1);

Phidget_open((PhidgetHandle) device);
CPhidget_openRemoteIP ((CPhidgetHandle) device, serial_number, "127.0.0.1", 5001, NULL);

C#

Java

Python

Configuration File

- how to find config file - explain the options

Troubleshooting

When using the Network Server, both the client and server should have the same version of the Network Server installed. The easiest way to ensure this is to update your libraries on both ends.

For other troubleshooting tips, try our General Troubleshooting page, in its Network Server section.