Пример #1
0
        /**
         * <summary>
         *   Retrieves a humidity sensor for a given identifier in a YAPI context.
         * <para>
         *   The identifier can be specified using several formats:
         * </para>
         * <para>
         * </para>
         * <para>
         *   - FunctionLogicalName
         * </para>
         * <para>
         *   - ModuleSerialNumber.FunctionIdentifier
         * </para>
         * <para>
         *   - ModuleSerialNumber.FunctionLogicalName
         * </para>
         * <para>
         *   - ModuleLogicalName.FunctionIdentifier
         * </para>
         * <para>
         *   - ModuleLogicalName.FunctionLogicalName
         * </para>
         * <para>
         * </para>
         * <para>
         *   This function does not require that the humidity sensor is online at the time
         *   it is invoked. The returned object is nevertheless valid.
         *   Use the method <c>YHumidity.isOnline()</c> to test if the humidity sensor is
         *   indeed online at a given time. In case of ambiguity when looking for
         *   a humidity sensor by logical name, no error is notified: the first instance
         *   found is returned. The search is performed first by hardware name,
         *   then by logical name.
         * </para>
         * </summary>
         * <param name="yctx">
         *   a YAPI context
         * </param>
         * <param name="func">
         *   a string that uniquely characterizes the humidity sensor, for instance
         *   <c>YCO2MK02.humidity</c>.
         * </param>
         * <returns>
         *   a <c>YHumidity</c> object allowing you to drive the humidity sensor.
         * </returns>
         */
        public static YHumidity FindHumidityInContext(YAPIContext yctx, string func)
        {
            YHumidity obj;

            obj = (YHumidity)YFunction._FindFromCacheInContext(yctx, "Humidity", func);
            if (obj == null)
            {
                obj = new YHumidity(yctx, func);
                YFunction._AddToCache("Humidity", func, obj);
            }
            return(obj);
        }
Пример #2
0
        /**
         * <summary>
         *   Retrieves a humidity sensor for a given identifier.
         * <para>
         *   The identifier can be specified using several formats:
         * </para>
         * <para>
         * </para>
         * <para>
         *   - FunctionLogicalName
         * </para>
         * <para>
         *   - ModuleSerialNumber.FunctionIdentifier
         * </para>
         * <para>
         *   - ModuleSerialNumber.FunctionLogicalName
         * </para>
         * <para>
         *   - ModuleLogicalName.FunctionIdentifier
         * </para>
         * <para>
         *   - ModuleLogicalName.FunctionLogicalName
         * </para>
         * <para>
         * </para>
         * <para>
         *   This function does not require that the humidity sensor is online at the time
         *   it is invoked. The returned object is nevertheless valid.
         *   Use the method <c>YHumidity.isOnline()</c> to test if the humidity sensor is
         *   indeed online at a given time. In case of ambiguity when looking for
         *   a humidity sensor by logical name, no error is notified: the first instance
         *   found is returned. The search is performed first by hardware name,
         *   then by logical name.
         * </para>
         * <para>
         *   If a call to this object's is_online() method returns FALSE although
         *   you are certain that the matching device is plugged, make sure that you did
         *   call registerHub() at application initialization time.
         * </para>
         * <para>
         * </para>
         * </summary>
         * <param name="func">
         *   a string that uniquely characterizes the humidity sensor, for instance
         *   <c>YCO2MK02.humidity</c>.
         * </param>
         * <returns>
         *   a <c>YHumidity</c> object allowing you to drive the humidity sensor.
         * </returns>
         */
        public static YHumidity FindHumidity(string func)
        {
            YHumidity obj;

            obj = (YHumidity)YFunction._FindFromCache("Humidity", func);
            if (obj == null)
            {
                obj = new YHumidity(func);
                YFunction._AddToCache("Humidity", func, obj);
            }
            return(obj);
        }