public static YDataLoggerProxy FindDataLogger(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YDataLogger      func = null;
            YDataLoggerProxy res  = (YDataLoggerProxy)YFunctionProxy.FindSimilarUnknownFunction("YDataLoggerProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YDataLoggerProxy)YFunctionProxy.FindSimilarKnownFunction("YDataLoggerProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YDataLogger.FirstDataLogger();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YDataLoggerProxy)func.get_userData());
                    }
                }
            }
            else
            {
                // allow to get datalogger from the name of any function
                int p = name.IndexOf(".");
                if (p > 0)
                {
                    name = name.Substring(0, p) + ".dataLogger";
                }
                func = YDataLogger.FindDataLogger(name);
                if (func.get_userData() != null)
                {
                    return((YDataLoggerProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YDataLoggerProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
Example #2
0
 /**
  * <summary>
  *   Returns the <c>YDatalogger</c> object of the device hosting the sensor.
  * <para>
  *   This method returns an object
  *   that can control global parameters of the data logger. The returned object
  *   should not be freed.
  * </para>
  * <para>
  * </para>
  * </summary>
  * <returns>
  *   an <c>YDatalogger</c> object, or null on error.
  * </returns>
  */
 public virtual YDataLoggerProxy get_dataLogger()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No Sensor connected");
     }
     return(YDataLoggerProxy.FindDataLogger(_func.get_dataLogger().get_serialNumber()));
 }