コード例 #1
0
        /**
         * <summary>
         *   Retrieves a light 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 light sensor is online at the time
         *   it is invoked. The returned object is nevertheless valid.
         *   Use the method <c>YLightSensor.isOnline()</c> to test if the light sensor is
         *   indeed online at a given time. In case of ambiguity when looking for
         *   a light 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="func">
         *   a string that uniquely characterizes the light sensor
         * </param>
         * <returns>
         *   a <c>YLightSensor</c> object allowing you to drive the light sensor.
         * </returns>
         */
        public static YLightSensor FindLightSensor(string func)
        {
            YLightSensor obj;

            obj = (YLightSensor)YFunction._FindFromCache("LightSensor", func);
            if (obj == null)
            {
                obj = new YLightSensor(func);
                YFunction._AddToCache("LightSensor", func, obj);
            }
            return(obj);
        }
コード例 #2
0
 /**
  * <summary>
  *   Retrieves a light 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 light sensor is online at the time
  *   it is invoked. The returned object is nevertheless valid.
  *   Use the method <c>YLightSensor.isOnline()</c> to test if the light sensor is
  *   indeed online at a given time. In case of ambiguity when looking for
  *   a light 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="func">
  *   a string that uniquely characterizes the light sensor
  * </param>
  * <returns>
  *   a <c>YLightSensor</c> object allowing you to drive the light sensor.
  * </returns>
  */
 public static YLightSensor FindLightSensor(string func)
 {
   YLightSensor obj;
   obj = (YLightSensor)YFunction._FindFromCache("LightSensor", func);
   if (obj == null)
   {
     obj = new YLightSensor(func);
     YFunction._AddToCache("LightSensor", func, obj);
   }
   return obj;
 }