EtherMania.com.WeatherShield1.WeatherShield1 C# (CSharp) Method

WeatherShield1() public method

public WeatherShield1 ( Cpu clockPin, Cpu dataPin, Byte deviceAddress ) : System
clockPin Microsoft.SPOT.Hardware.Cpu
dataPin Microsoft.SPOT.Hardware.Cpu
deviceAddress Byte
return System
        public WeatherShield1(Cpu.Pin clockPin, Cpu.Pin dataPin, Byte deviceAddress)
        {
            m_clockPort = new OutputPort(clockPin, false);
            m_dataPort = new TristatePort(dataPin, false, true, Port.ResistorMode.Disabled);
            m_deviceAddress = deviceAddress;

            resetConnection();
        }

Same methods

WeatherShield1::WeatherShield1 ( ) : System