Exemplo n.º 1
0
        override public bool Init()
        {
            Autodetection <AnalogTeensy> au = new Autodetection <AnalogTeensy>();
            AnalogTeensy oscillo            = new AnalogTeensy();

            oscillo.Open("COM25");
            return(base.Init());
        }
Exemplo n.º 2
0
        public override bool Init()
        {
            Autodetection <DigitalArduinoDue> au = new Autodetection <DigitalArduinoDue>();

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

            Text = oscillo.GetName();

            return(base.Init());
        }
Exemplo n.º 3
0
        override public bool Init()
        {
            Autodetection <AnalogArduinoDue> au = new Autodetection <AnalogArduinoDue>();

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

            Text = oscilloDue.GetName();

            return(base.Init());
        }
Exemplo n.º 4
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());
        }