///<summary> /// Creates proxes to be used by this class only. /// </summary> private void CreateMyProxies() { motion = Proxies.GetProxy<MotionProxy>(); battery = Proxies.GetProxy<BatteryProxy>(); memory = Proxies.GetProxy<MemoryProxy>(); }
///<summary> /// Creates proxes to be used by this class only. /// </summary> private void CreateMyProxies() { motion = Proxies.GetProxy <MotionProxy>(); battery = Proxies.GetProxy <BatteryProxy>(); memory = Proxies.GetProxy <MemoryProxy>(); }
public void sayName() { tts.say("Hallo ich bin Cocco"); BatteryProxy battery = new BatteryProxy(ip, 9559); tts.say("Meine Batterie ist zu:" + battery.getBatteryCharge() + "Prozent geladen"); }