// link the instance to a real YoctoAPI object
        internal override void linkToHardware(string hwdName)
        {
            YSegmentedDisplay hwd = YSegmentedDisplay.FindSegmentedDisplay(hwdName);

            // first redo base_init to update all _func pointers
            base_init(hwd, hwdName);
            // then setup Yocto-API pointers and callbacks
            init(hwd);
        }
        public static YSegmentedDisplayProxy FindSegmentedDisplay(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YSegmentedDisplay      func = null;
            YSegmentedDisplayProxy res  = (YSegmentedDisplayProxy)YFunctionProxy.FindSimilarUnknownFunction("YSegmentedDisplayProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YSegmentedDisplayProxy)YFunctionProxy.FindSimilarKnownFunction("YSegmentedDisplayProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YSegmentedDisplay.FirstSegmentedDisplay();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YSegmentedDisplayProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YSegmentedDisplay.FindSegmentedDisplay(name);
                if (func.get_userData() != null)
                {
                    return((YSegmentedDisplayProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YSegmentedDisplayProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }