Beispiel #1
0
 public override bool Init()
 {
     Autodetection<AnalogTeensy> au = new Autodetection<AnalogTeensy>();
     oscillo = new AnalogTeensy();
     oscillo.Open("COM25");
     return base.Init();
 }
Beispiel #2
0
        override public bool Init()
        {
            Autodetection <AnalogTeensy> au = new Autodetection <AnalogTeensy>();

            oscillo = new AnalogTeensy();
            oscillo.Open("COM25");
            return(base.Init());
        }
Beispiel #3
0
        public override bool Init()
        {
            Autodetection<SerialParallax> au = new Autodetection<SerialParallax>();
            oscillo = au.Detection();
            if (oscillo == null)
                return false;

            Text = oscillo.GetName();

            return base.Init();
        }
        public override bool Init()
        {
            Autodetection<AnalogArduinoDue> au = new Autodetection<AnalogArduinoDue>();
            oscilloDue = au.Detection();
            if (oscilloDue == null)
                return false;

            Text = oscilloDue.GetName();

            return base.Init();
        }
Beispiel #5
0
        public override bool Init()
        {
            Autodetection<DigitalArduino> au = new Autodetection<DigitalArduino>();
            oscillo = au.Detection();
            if (oscillo == null)
                return false;

            Text = oscillo.GetName();

            return base.Init();
        }
Beispiel #6
0
        override public bool Init()
        {
            Autodetection <SerialParallax> au = new Autodetection <SerialParallax>();

            oscillo = au.Detection();
            if (oscillo == null)
            {
                return(false);
            }

            Text = oscillo.GetName();

            return(base.Init());
        }
Beispiel #7
0
        override public bool Init()
        {
            Autodetection <AnalogArduino> au = new Autodetection <AnalogArduino>();

            oscillo = au.Detection();
            if (oscillo == null)
            {
                return(false);
            }

            Text = oscillo.GetName();

            return(base.Init());
        }