Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            string errmsg = "";
            string target;

            YGenericSensor 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 = YGenericSensor.FirstGenericSensor();

                if (sensor == null)
                {
                    Console.WriteLine("No module connected (check USB cable) ");
                    Environment.Exit(0);
                }
                Console.WriteLine("Using: " + sensor.get_module().get_serialNumber());
            }
            else
            {
                sensor = YGenericSensor.FindGenericSensor(target + ".genericSensor1");
            }

            // retreive module serial
            string serial = sensor.get_module().get_serialNumber();

            // retreive both channels
            YGenericSensor ch1 = YGenericSensor.FindGenericSensor(serial + ".genericSensor1");

            string unitSensor1 = "";

            if (ch1.isOnline())
            {
                unitSensor1 = ch1.get_unit();
            }

            while (ch1.isOnline())
            {
                Console.Write("Value: " + ch1.get_currentValue().ToString() + unitSensor1);
                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");
        }
Ejemplo n.º 2
0
        // link the instance to a real YoctoAPI object
        internal override void linkToHardware(string hwdName)
        {
            YGenericSensor hwd = YGenericSensor.FindGenericSensor(hwdName);

            // first redo base_init to update all _func pointers
            base_init(hwd, hwdName);
            // then setup Yocto-API pointers and callbacks
            init(hwd);
        }
Ejemplo n.º 3
0
        public override async Task <int> Run()
        {
            try {
                await YAPI.RegisterHub(HubURL);

                YGenericSensor tsensor;

                if (Target.ToLower() == "any")
                {
                    tsensor = YGenericSensor.FirstGenericSensor();
                    if (tsensor == null)
                    {
                        WriteLine("No module connected (check USB cable) ");
                        return(-1);
                    }

                    YModule m = await tsensor.get_module();

                    Target = await m.get_serialNumber();
                }

                // retreive module serial
                WriteLine("Using: " + Target);

                // retreive both channels
                YGenericSensor ch1, ch2;
                ch1 = YGenericSensor.FindGenericSensor(Target + ".genericSensor1");
                ch2 = YGenericSensor.FindGenericSensor(Target + ".genericSensor2");

                string unitSensor1 = "", unitSensor2 = "";
                if (await ch1.isOnline())
                {
                    unitSensor1 = await ch1.get_unit();
                }

                if (await ch2.isOnline())
                {
                    unitSensor2 = await ch2.get_unit();
                }

                while (await ch1.isOnline() && await ch2.isOnline())
                {
                    Write("Channel 1 : " + await ch1.get_currentValue() + unitSensor1);
                    Write("  Channel 2 : " + await ch2.get_currentValue() + unitSensor2);
                    WriteLine("  (press Ctrl-C to exit)");
                    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);
        }
        public void reloadConfig(YModule Source)
        {
            _name       = _sourceSensor.get_friendlyName();;
            _serial     = _sourceSensor.get_module().get_module().get_serialNumber();
            _unit       = _sourceSensor.get_unit();
            _datalogger = YDataLogger.FindDataLogger(_serial + ".dataLogger");
            _tempSensor = YTemperature.FindTemperature(_serial + ".temperature");
            string tt = _sourceSensor.get_hardwareId().Replace("weighScale", "genericSensor");

            _genSensor = YGenericSensor.FindGenericSensor(tt);
        }
Ejemplo n.º 5
0
        public static YGenericSensorProxy FindGenericSensor(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YGenericSensor      func = null;
            YGenericSensorProxy res  = (YGenericSensorProxy)YFunctionProxy.FindSimilarUnknownFunction("YGenericSensorProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YGenericSensorProxy)YFunctionProxy.FindSimilarKnownFunction("YGenericSensorProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YGenericSensor.FirstGenericSensor();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YGenericSensorProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YGenericSensor.FindGenericSensor(name);
                if (func.get_userData() != null)
                {
                    return((YGenericSensorProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YGenericSensorProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
Ejemplo n.º 6
0
        public override async Task <int> Run()
        {
            try {
                await YAPI.RegisterHub(HubURL);

                YGenericSensor sensor;

                if (Target.ToLower() == "any")
                {
                    sensor = YGenericSensor.FirstGenericSensor();

                    if (sensor == null)
                    {
                        WriteLine("No module connected (check USB cable) ");
                        return(-1);
                    }
                }
                else
                {
                    sensor = YGenericSensor.FindGenericSensor(Target + ".genericSensor1");
                }

                string unitSensor1 = "";
                if (await sensor.isOnline())
                {
                    unitSensor1 = await sensor.get_unit();
                }

                while (await sensor.isOnline())
                {
                    WriteLine("Value: " + await sensor.get_currentValue() + unitSensor1);
                    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);
        }