// link the instance to a real YoctoAPI object internal override void linkToHardware(string hwdName) { YPower hwd = YPower.FindPower(hwdName); // first redo base_init to update all _func pointers base_init(hwd, hwdName); // then setup Yocto-API pointers and callbacks init(hwd); }
// perform the 2nd stage setup that requires YoctoAPI object protected void init(YPower hwd) { if (hwd == null) { return; } base.init(hwd); InternalStuff.log("registering Power callback"); _func.registerValueCallback(valueChangeCallback); }
/** * <summary> * Retrieves a electrical power 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 electrical power sensor is online at the time * it is invoked. The returned object is nevertheless valid. * Use the method <c>YPower.isOnline()</c> to test if the electrical power sensor is * indeed online at a given time. In case of ambiguity when looking for * a electrical power 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 electrical power sensor * </param> * <returns> * a <c>YPower</c> object allowing you to drive the electrical power sensor. * </returns> */ public static YPower FindPower(string func) { YPower obj; obj = (YPower)YFunction._FindFromCache("Power", func); if (obj == null) { obj = new YPower(func); YFunction._AddToCache("Power", func, obj); } return(obj); }
public static YPowerProxy FindPower(string name) { // cases to handle: // name ="" no matching unknwn // name ="" unknown exists // name != "" no matching unknown // name !="" unknown exists YPower func = null; YPowerProxy res = (YPowerProxy)YFunctionProxy.FindSimilarUnknownFunction("YPowerProxy"); if (name == "") { if (res != null) { return(res); } res = (YPowerProxy)YFunctionProxy.FindSimilarKnownFunction("YPowerProxy"); if (res != null) { return(res); } func = YPower.FirstPower(); if (func != null) { name = func.get_hardwareId(); if (func.get_userData() != null) { return((YPowerProxy)func.get_userData()); } } } else { func = YPower.FindPower(name); if (func.get_userData() != null) { return((YPowerProxy)func.get_userData()); } } if (res == null) { res = new YPowerProxy(func, name); } if (func != null) { res.linkToHardware(name); if (func.isOnline()) { res.arrival(); } } return(res); }
/** * <summary> * Enumerates all functions of type Power 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>YPower.FindPower</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>(); YPower it = YPower.FirstPower(); while (it != null) { res.Add(it.get_hardwareId()); it = it.nextPower(); } return(res.ToArray()); }
static void Main(string[] args) { string errmsg = ""; string target; YPower psensor; 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") { psensor = YPower.FirstPower(); if (psensor == null) { Console.WriteLine("No module connected (check USB cable) "); Environment.Exit(0); } } else { psensor = YPower.FindPower(target + ".power"); } if (!psensor.isOnline()) { Console.WriteLine("Module not connected"); Console.WriteLine("check identification and USB cable"); Environment.Exit(0); } while (psensor.isOnline()) { Console.WriteLine("Current power: " + psensor.get_currentValue().ToString() + " W"); Console.WriteLine(" (press Ctrl-C to exit)"); YAPI.Sleep(1000, ref errmsg); } YAPI.FreeAPI(); }
public override async Task <int> Run() { try { await YAPI.RegisterHub(HubURL); YPower psensor; if (Target.ToLower() == "any") { psensor = YPower.FirstPower(); if (psensor == null) { WriteLine("No module connected (check USB cable) "); return(-1); } } else { psensor = YPower.FindPower(Target + ".power"); } while (await psensor.isOnline()) { WriteLine("Current power: " + await psensor.get_currentValue() + " W"); 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); }
/** * <summary> * Retrieves a electrical power 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 electrical power sensor is online at the time * it is invoked. The returned object is nevertheless valid. * Use the method <c>YPower.isOnline()</c> to test if the electrical power sensor is * indeed online at a given time. In case of ambiguity when looking for * a electrical power 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 electrical power sensor * </param> * <returns> * a <c>YPower</c> object allowing you to drive the electrical power sensor. * </returns> */ public static YPower FindPower(string func) { YPower obj; obj = (YPower) YFunction._FindFromCache("Power", func); if (obj == null) { obj = new YPower(func); YFunction._AddToCache("Power", func, obj); } return obj; }
// 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 = (YPower)hwd; base.base_init(hwd, instantiationName); }
// property cache //--- (end of YPower definitions) //--- (YPower implementation) internal YPowerProxy(YPower hwd, string instantiationName) : base(hwd, instantiationName) { InternalStuff.log("Power " + instantiationName + " instantiation"); base_init(hwd, instantiationName); }