Gor.Devices.Light_PhotoResistor.ReadInt C# (CSharp) 메소드

ReadInt() 공개 메소드

Return ADC points of reading
public ReadInt ( ) : int
리턴 int
        public override int ReadInt()
        {
            if (Adc == null)
                throw new Exception("Nessuna connessione.");

            return Adc.Read(Channel);
        }