Ejemplo n.º 1
0
        /**
         * <summary>
         *   Retrieves an RGB LED 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 RGB LED is online at the time
         *   it is invoked. The returned object is nevertheless valid.
         *   Use the method <c>YColorLed.isOnline()</c> to test if the RGB LED is
         *   indeed online at a given time. In case of ambiguity when looking for
         *   an RGB LED 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 RGB LED
         * </param>
         * <returns>
         *   a <c>YColorLed</c> object allowing you to drive the RGB LED.
         * </returns>
         */
        public static YColorLed FindColorLedInContext(YAPIContext yctx, string func)
        {
            YColorLed obj;

            obj = (YColorLed)YFunction._FindFromCacheInContext(yctx, "ColorLed", func);
            if (obj == null)
            {
                obj = new YColorLed(yctx, func);
                YFunction._AddToCache("ColorLed", func, obj);
            }
            return(obj);
        }
Ejemplo n.º 2
0
        /**
         * <summary>
         *   Retrieves an RGB LED 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 RGB LED is online at the time
         *   it is invoked. The returned object is nevertheless valid.
         *   Use the method <c>YColorLed.isOnline()</c> to test if the RGB LED is
         *   indeed online at a given time. In case of ambiguity when looking for
         *   an RGB LED 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 RGB LED
         * </param>
         * <returns>
         *   a <c>YColorLed</c> object allowing you to drive the RGB LED.
         * </returns>
         */
        public static YColorLed FindColorLed(string func)
        {
            YColorLed obj;

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