Esempio n. 1
0
 /// <summary>
 ///     Construct a 595-type shift register connected to the output of another 595-type shift register.
 /// </summary>
 /// <param name="UpstreamDevice"></param>
 public Hc595(ShiftOut UpstreamDevice) : base(UpstreamDevice, 8)
 {
 }
 /// <summary>
 /// Construct a 595-type shift register connected to the output of another 595-type shift register.
 /// </summary>
 /// <param name="UpstreamDevice"></param>
 public Sn74hc595(ShiftOut UpstreamDevice) : base(UpstreamDevice, 8)
 {
 }
 internal ShiftOutPin(ShiftOut controller, int pinNumber)
 {
     BitNumber = pinNumber;
     this.controller = controller;
 }