Closing a Channel: Difference between revisions
From Phidgets Support
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
|-| | |-| | ||
JavaScript=<syntaxhighlight lang=javascript> | JavaScript=<syntaxhighlight lang=javascript> | ||
ch.close() | await ch.close() | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</tabber> | </tabber> |
Latest revision as of 20:41, 19 April 2022
Phidget Programming Basics: Closing a Channel Table of Contents
9 . Closing a Channel
When you are finished with a channel, you should close and (in some languages) delete it. Once closed, the physical Phidget channel the software channel was matched to will be released, and made available to attach to other software channels.
For example:
ch.close()
ch.close();
ch.Close();
Phidget_close((PhidgetHandle)ch);
PhidgetDigitalInput_delete(&ch); //Replace DigitalInput with the channel class of your channel
await ch.close()
When you close a channel, it will reset all of the properties of that channel. For example, a digital output will revert back to FALSE when it is closed.