예제 #1
0
        public void FileClose(int handle)
        {
            short ret = PiGpioNativeMethods.fileClose((short)handle);

            if (ret < 0)
            {
                throw new PiGPIOException(ret);
            }
        }