Exemplo n.º 1
0
        public static YLedProxy FindLed(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YLed      func = null;
            YLedProxy res  = (YLedProxy)YFunctionProxy.FindSimilarUnknownFunction("YLedProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YLedProxy)YFunctionProxy.FindSimilarKnownFunction("YLedProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YLed.FirstLed();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YLedProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YLed.FindLed(name);
                if (func.get_userData() != null)
                {
                    return((YLedProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YLedProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
Exemplo n.º 2
0
        /**
         * <summary>
         *   Enumerates all functions of type Led 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>YLed.FindLed</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>();
            YLed          it  = YLed.FirstLed();

            while (it != null)
            {
                res.Add(it.get_hardwareId());
                it = it.nextLed();
            }
            return(res.ToArray());
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            string errmsg = "";
            string target;
            YLed   led;
            string on_off;

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

            if (YAPI.RegisterHub("usb", ref errmsg) != YAPI.SUCCESS)
            {
                Console.WriteLine("RegisterHub error: " + errmsg);
                Environment.Exit(0);
            }

            if (target == "ANY")
            {
                led = YLed.FirstLed();
                if (led == null)
                {
                    Console.WriteLine("No module connected (check USB cable) ");
                    Environment.Exit(0);
                }
            }
            else
            {
                led = YLed.FindLed(target + ".led");
            }

            if (led.isOnline())
            {
                if (on_off == "ON")
                {
                    led.set_power(YLed.POWER_ON);
                }
                else
                {
                    led.set_power(YLed.POWER_OFF);
                }
            }
            else
            {
                Console.WriteLine("Module not connected");
                Console.WriteLine("check identification and USB cable");
            }
            YAPI.FreeAPI();
        }
Exemplo n.º 4
0
        public override async Task <int> Run()
        {
            try {
                await YAPI.RegisterHub(HubURL);

                YLed led;
                if (Target.ToLower() == "any")
                {
                    led = YLed.FirstLed();
                    if (led == null)
                    {
                        WriteLine("No module connected (check USB cable) ");
                        return(-1);
                    }
                }
                else
                {
                    led = YLed.FindLed(Target + ".led");
                }

                if (await led.isOnline())
                {
                    if (OnOff.ToUpper() == "ON")
                    {
                        await led.set_power(YLed.POWER_ON);
                    }
                    else
                    {
                        await led.set_power(YLed.POWER_OFF);
                    }
                }
                else
                {
                    WriteLine("Module not connected (check identification and USB cable)");
                }
            } catch (YAPI_Exception ex) {
                WriteLine("error: " + ex.Message);
            }

            YAPI.FreeAPI();
            return(0);
        }