コード例 #1
0
        /**
         * <summary>
         *   Enumerates all functions of type Temperature 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>YTemperature.FindTemperature</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>();
            YTemperature  it  = YTemperature.FirstTemperature();

            while (it != null)
            {
                res.Add(it.get_hardwareId());
                it = it.nextTemperature();
            }
            return(res.ToArray());
        }
コード例 #2
0
        public static YTemperatureProxy FindTemperature(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YTemperature      func = null;
            YTemperatureProxy res  = (YTemperatureProxy)YFunctionProxy.FindSimilarUnknownFunction("YTemperatureProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YTemperatureProxy)YFunctionProxy.FindSimilarKnownFunction("YTemperatureProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YTemperature.FirstTemperature();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YTemperatureProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YTemperature.FindTemperature(name);
                if (func.get_userData() != null)
                {
                    return((YTemperatureProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YTemperatureProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
コード例 #3
0
ファイル: Form1.cs プロジェクト: yoctopuce/yoctolib_cs
        public override string ToString()
        {
            string module = _t.module().get_logicalName();

            if (module == "")
            {
                module = _t.module().get_serialNumber();
            }
            string func = _t.get_logicalName();

            if (func == "")
            {
                func = _t.get_hardwareId();
                func = func.Substring(func.IndexOf('.') + 1);
            }
            return(module + " " + func);
        }