Closing a Channel
From Phidgets Support
																 Phidget Programming Basics: Closing a Channel Table of Contents
 Table of Contents
 Table of Contents
 Table of Contents9 . 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.







































