Alert.png

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.


Click on the 2phidget22.jpg button in the menu bar to go to the Phidget22 version of this page.

Alert.png

Template:ExamplePseudocode: Difference between revisions

From Phidgets Legacy Support
(Created page with "<div style="background-color: #f3f3f3; border-color: #1c9edb; border-width:1px; border-style: dashed;"> <font size="3"> <source lang=cpp> // --- Event Functions --- Create ...")
 
No edit summary
 
(20 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div style="background-color: #f3f3f3; border-color: #1c9edb; border-width:1px; border-style: dashed;">
The Hello World example has this general structure so you can follow along.  We also have [[General Phidget Programming|an in-depth general introduction]] to writing Phidget code (like open, read data, etc), as well as the {{{3}}} for specific syntax:
<font size="3">
<source lang=cpp>


  // --- Event Functions ---
<div class="source">
{| class="source" style="margin-left:15px;"


  Create any Language-Specific Functions (exception handling)
|- valign="top"
|<font face="courier new" family="monospace">


  Create General Attach, Detach, and Error Handling Functions
<span style="color:#090;">// ----- '''Event''' and Other Functions -----</span>
      On attach: Initialize hardware (antennas, etc)
      On detach: Reset any state variables


  Create Hardware-Specific Functions
Create any Language-Specific Functions (exception handling)
      Print messages to notify they are called
      Perform minor accompanying changes (turn on LED, etc)


  // --- Main Code ---
Create General '''Attach''', '''Detach''', and '''Error''' Handling Functions:
:On attach: Print Hello Message
:On detach: Print Goodbye Message


  Create Device Software Object
</font>
  Hook Event Functions created above to Device
| width="15px" | &nbsp;
  Open Device
|
<font face="courier new" family="monospace">
<span style="color:#00F;">{{{1}}}</span>
</font>
|- valign="top"
|style=white-space:nowrap|<font face="courier new" family="monospace">


  Loop waiting on events and user input:
<span style="color:#090;">// ----- '''Main''' Code -----</span><br><br>
      Get and Print various device statuses on request by input
'''Create''' Manager Software Object<br>
      Handle on-going attach and detach events
Hook '''Event''' Functions created above to Device<br>
      Exit upon specific user input
'''Open''' Device<br>


  Close Device
;Wait for 'Enter' key character input
  Delete Device
:Handle on-going attach and detach events
:Print Hello and Goodbye messages
:Exit upon input


</source>
'''Close''' Device
 
Delete Device
 
</font>
| width="15px" | &nbsp;
|
<font face="courier new" family="monospace">
<span style="color:#00F;">{{{2}}}</span>
</font>
</font>
|}
</div>
</div>

Latest revision as of 20:47, 25 April 2012

The Hello World example has 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 {{{3}}} for specific syntax:

// ----- Event and Other Functions -----

Create any Language-Specific Functions (exception handling)

Create General Attach, Detach, and Error Handling Functions:

On attach: Print Hello Message
On detach: Print Goodbye Message

 

{{{1}}}

// ----- Main Code -----

Create Manager Software Object
Hook Event Functions created above to Device
Open Device

Wait for 'Enter' key character input
Handle on-going attach and detach events
Print Hello and Goodbye messages
Exit upon input

Close Device

Delete Device

 

{{{2}}}