示例#1
0
        public PQ210G_SftRegister8Bit() : base(16)
        {
            IcType    = ICType.ic4;
            ModelName = "IC16";

            PinNames = new string[] { "QB", "QC", "QD", "QE", "QF", "QG", "QH", "GND", "QH'", "SRCLR", "SRCLK", "RCLK", "OE", "SER", "QA", "VCC" };

            Chip = new Chips.Shift_Register_8Bit();

            SetPinModes(0, 6, PinMode.Ouput);
            SetPinModes(8, PinMode.Ouput);
            SetPinModes(14, PinMode.Ouput);

            Chip.Input[5] = false;
        }
示例#2
0
        public PQ210G_SftRegister8Bit() : base(16)
        {
            IcType    = ICType.ic4;
            ModelName = "IC16";

            Chip = new Chips.Shift_Register_8Bit();

            PinModes[0]  = PinMode.Ouput;
            PinModes[1]  = PinMode.Ouput;
            PinModes[2]  = PinMode.Ouput;
            PinModes[3]  = PinMode.Ouput;
            PinModes[4]  = PinMode.Ouput;
            PinModes[5]  = PinMode.Ouput;
            PinModes[6]  = PinMode.Ouput;
            PinModes[8]  = PinMode.Ouput;
            PinModes[14] = PinMode.Ouput;

            Chip.Input[5] = false;
        }