Example #1
0
        static void Main(string[] args)
        {
            string errmsg = "";
            string target;

            YMultiCellWeighScale sensor;

            if (args.Length < 1)
            {
                usage();
            }
            target = args[0].ToUpper();

            // Setup the API to use local USB devices
            if (YAPI.RegisterHub("usb", ref errmsg) != YAPI.SUCCESS)
            {
                Console.WriteLine("RegisterHub error: " + errmsg);
                Environment.Exit(0);
            }

            if (target == "ANY")
            {
                sensor = YMultiCellWeighScale.FirstMultiCellWeighScale();
                if (sensor == null)
                {
                    Console.WriteLine("No module connected (check USB cable) ");
                    Environment.Exit(0);
                }

                Console.WriteLine("Using: " + sensor.get_module().get_serialNumber());
            }
            else
            {
                sensor = YMultiCellWeighScale.FindMultiCellWeighScale(target + ".multiCellWeighScale");
            }

            if (sensor.isOnline())
            {
                string unit = "";
                // On startup, enable excitation and tare weigh scale
                Console.WriteLine("Resetting tare weight...");
                sensor.set_excitation(YMultiCellWeighScale.EXCITATION_AC);
                YAPI.Sleep(3000, ref errmsg);
                sensor.tare();
                unit = sensor.get_unit();

                // Show measured weight continuously
                while (sensor.isOnline())
                {
                    Console.Write("Weight : " + sensor.get_currentValue().ToString() + unit);
                    Console.WriteLine("  (press Ctrl-C to exit)");
                    YAPI.Sleep(1000, ref errmsg);
                }
            }

            YAPI.FreeAPI();
            Console.WriteLine("Module not connected");
            Console.WriteLine("check identification and USB cable");
        }
Example #2
0
        // link the instance to a real YoctoAPI object
        internal override void linkToHardware(string hwdName)
        {
            YMultiCellWeighScale hwd = YMultiCellWeighScale.FindMultiCellWeighScale(hwdName);

            // first redo base_init to update all _func pointers
            base_init(hwd, hwdName);
            // then setup Yocto-API pointers and callbacks
            init(hwd);
        }
Example #3
0
 // perform the 2nd stage setup that requires YoctoAPI object
 protected void init(YMultiCellWeighScale hwd)
 {
     if (hwd == null)
     {
         return;
     }
     base.init(hwd);
     InternalStuff.log("registering MultiCellWeighScale callback");
     _func.registerValueCallback(valueChangeCallback);
 }
Example #4
0
        public override async Task <int> Run()
        {
            try {
                await YAPI.RegisterHub(HubURL);

                YMultiCellWeighScale sensor;

                if (Target.ToLower() == "any")
                {
                    sensor = YMultiCellWeighScale.FirstMultiCellWeighScale();
                    if (sensor == null)
                    {
                        WriteLine("No module connected (check USB cable) ");
                        return(-1);
                    }
                    YModule ymod = await sensor.get_module();

                    WriteLine("Using: " + await ymod.get_serialNumber());
                }
                else
                {
                    sensor = YMultiCellWeighScale.FindMultiCellWeighScale(Target +
                                                                          ".multiCellWeighScale");
                }

                if (await sensor.isOnline())
                {
                    string unit = "";
                    // On startup, enable excitation and tare weigh scale
                    WriteLine("Resetting tare weight...");
                    await sensor.set_excitation(YMultiCellWeighScale.EXCITATION_AC);

                    await YAPI.Sleep(3000);

                    await sensor.tare();

                    unit = await sensor.get_unit();

                    // Show measured weight continuously
                    while (await sensor.isOnline())
                    {
                        Write("Weight : " + await sensor.get_currentValue() + unit);
                        await YAPI.Sleep(1000);
                    }
                }
                WriteLine("Module not connected (check identification and USB cable)");
            } catch (YAPI_Exception ex) {
                WriteLine("error: " + ex.Message);
            }

            YAPI.FreeAPI();
            return(0);
        }
Example #5
0
        public static YMultiCellWeighScaleProxy FindMultiCellWeighScale(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YMultiCellWeighScale      func = null;
            YMultiCellWeighScaleProxy res  = (YMultiCellWeighScaleProxy)YFunctionProxy.FindSimilarUnknownFunction("YMultiCellWeighScaleProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YMultiCellWeighScaleProxy)YFunctionProxy.FindSimilarKnownFunction("YMultiCellWeighScaleProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YMultiCellWeighScale.FirstMultiCellWeighScale();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YMultiCellWeighScaleProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YMultiCellWeighScale.FindMultiCellWeighScale(name);
                if (func.get_userData() != null)
                {
                    return((YMultiCellWeighScaleProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YMultiCellWeighScaleProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
Example #6
0
        /**
         * <summary>
         *   Enumerates all functions of type MultiCellWeighScale 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>YMultiCellWeighScale.FindMultiCellWeighScale</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>();
            YMultiCellWeighScale it  = YMultiCellWeighScale.FirstMultiCellWeighScale();

            while (it != null)
            {
                res.Add(it.get_hardwareId());
                it = it.nextMultiCellWeighScale();
            }
            return(res.ToArray());
        }
    /**
     * <summary>
     *   Retrieves a multi-cell weighing scale 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 multi-cell weighing scale sensor is online at the time
     *   it is invoked. The returned object is nevertheless valid.
     *   Use the method <c>YMultiCellWeighScale.isOnline()</c> to test if the multi-cell weighing scale sensor is
     *   indeed online at a given time. In case of ambiguity when looking for
     *   a multi-cell weighing scale 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 multi-cell weighing scale sensor
     * </param>
     * <returns>
     *   a <c>YMultiCellWeighScale</c> object allowing you to drive the multi-cell weighing scale sensor.
     * </returns>
     */
    public static YMultiCellWeighScale FindMultiCellWeighScale(string func)
    {
        YMultiCellWeighScale obj;

        lock (YAPI.globalLock) {
            obj = (YMultiCellWeighScale)YFunction._FindFromCache("MultiCellWeighScale", func);
            if (obj == null)
            {
                obj = new YMultiCellWeighScale(func);
                YFunction._AddToCache("MultiCellWeighScale", func, obj);
            }
        }
        return(obj);
    }
Example #8
0
 // perform the initial setup that may be done without a YoctoAPI object (hwd can be null)
 internal override void base_init(YFunction hwd, string instantiationName)
 {
     _func = (YMultiCellWeighScale)hwd;
     base.base_init(hwd, instantiationName);
 }
Example #9
0
        //--- (end of YMultiCellWeighScale definitions)

        //--- (YMultiCellWeighScale implementation)
        internal YMultiCellWeighScaleProxy(YMultiCellWeighScale hwd, string instantiationName) : base(hwd, instantiationName)
        {
            InternalStuff.log("MultiCellWeighScale " + instantiationName + " instantiation");
            base_init(hwd, instantiationName);
        }