Exemplo n.º 1
0
        /// <inheritDoc />
        public void GlitchFilter(int gpio, int steady)
        {
            short ret = PiGpioNativeMethods.GlitchFilter((ushort)gpio, (ushort)steady);

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