CyrusBuilt.MonoPi.Sensors.DS1620.DS1620 C# (CSharp) Method

DS1620() public method

Initializes a new instance of the CyrusBuilt.MonoPi.Sensors.DS1620 class with the clock, data, and reset GPIO pins.
public DS1620 ( IGpio clock, IGpio data, IGpio reset ) : System
clock IGpio /// The clock pin. ///
data IGpio /// The data pin. ///
reset IGpio /// The reset pin. ///
return System
		public DS1620(IGpio clock, IGpio data, IGpio reset) {
			this._clock = clock;
			this._clock.Provision();

			this._data = data;
			this._data.Provision();

			this._reset = reset;
			this._reset.Provision();
		}
		#endregion