コード例 #1
0
        public static YColorLedProxy FindColorLed(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YColorLed      func = null;
            YColorLedProxy res  = (YColorLedProxy)YFunctionProxy.FindSimilarUnknownFunction("YColorLedProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YColorLedProxy)YFunctionProxy.FindSimilarKnownFunction("YColorLedProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YColorLed.FirstColorLed();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YColorLedProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YColorLed.FindColorLed(name);
                if (func.get_userData() != null)
                {
                    return((YColorLedProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YColorLedProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }