Esempio n. 1
0
        public static YQuadratureDecoderProxy FindQuadratureDecoder(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YQuadratureDecoder      func = null;
            YQuadratureDecoderProxy res  = (YQuadratureDecoderProxy)YFunctionProxy.FindSimilarUnknownFunction("YQuadratureDecoderProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YQuadratureDecoderProxy)YFunctionProxy.FindSimilarKnownFunction("YQuadratureDecoderProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YQuadratureDecoder.FirstQuadratureDecoder();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YQuadratureDecoderProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YQuadratureDecoder.FindQuadratureDecoder(name);
                if (func.get_userData() != null)
                {
                    return((YQuadratureDecoderProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YQuadratureDecoderProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
Esempio n. 2
0
        /**
         * <summary>
         *   Enumerates all functions of type QuadratureDecoder available on the devices
         *   currently reachable by the library, and returns their unique hardware ID.
         * <para>
         *   Each of these IDs can be provided as argument to the method
         *   <c>YQuadratureDecoder.FindQuadratureDecoder</c> to obtain an object that can control the
         *   corresponding device.
         * </para>
         * </summary>
         * <returns>
         *   an array of strings, each string containing the unique hardwareId
         *   of a device function currently connected.
         * </returns>
         */
        public static new string[] GetSimilarFunctions()
        {
            List <string>      res = new List <string>();
            YQuadratureDecoder it  = YQuadratureDecoder.FirstQuadratureDecoder();

            while (it != null)
            {
                res.Add(it.get_hardwareId());
                it = it.nextQuadratureDecoder();
            }
            return(res.ToArray());
        }