public WiredCommunication(Ear ear)
 {
     // Configure Adrocom for Wired Communication
     ComWrapper = new AdrocomWrapper(ear, AdrocomMode.Wired);
 }
 public WirelessCommunication(Ear ear)
 {
     // Configure Adrocom for Wireless Communication
     ComWrapper  = new AdrocomWrapper(ear, AdrocomMode.Wireless);
     _bleWrapper = new BLEWrapper();
 }