Animatroller.SceneRunner.TestPiFace.TestPiFace C# (CSharp) Method

TestPiFace() public method

public TestPiFace ( IEnumerable args ) : System
args IEnumerable
return System
        public TestPiFace(IEnumerable<string> args)
        {
            buttonPlayFX = new DigitalInput("Play FX");
            buttonPauseFX = new DigitalInput("Pause FX");
            buttonCueFX = new DigitalInput("Cue FX");
            buttonResumeFX = new DigitalInput("Resume FX");
            buttonPlayBackground = new DigitalInput("Play Background");
            buttonPauseBackground = new DigitalInput("Pause Background");
            buttonBackgroundLowVolume = new DigitalInput("Background Low");
            buttonBackgroundHighVolume = new DigitalInput("Background High");
            buttonBackgroundNext = new DigitalInput("BG next");
            buttonTrigger1 = new DigitalInput("Pop!");
            buttonTriggerRelay1 = new DigitalInput("Relay 1");
            buttonTriggerRelay2 = new DigitalInput("Relay 2");
            switchTest1 = new Switch("Switch test 1");
            switchRelay1 = new Switch("Relay 1");
            switchRelay2 = new Switch("Relay 2");

            audioPlayer = new AudioPlayer("Audio Player");

            this.oscServer = new Expander.OscServer(9999);
        }