Ejemplo n.º 1
0
        /// <summary>
        /// Constructor.
        /// </summary>
        public IHSEngine()
        {
            Devices = new ObservableCollection <IHSDevice>();

            DeviceInfo     = new IHSDeviceInfo();
            SensorReadings = new IHSSensorReadings();
            Gps            = new IHSGps();
        }
Ejemplo n.º 2
0
 public IHSDeviceInfoHandler(
     IHSDeviceInfo deviceInfo,
     GattDeviceService deviceInfoService,
     GattDeviceService batteryInfoService)
 {
     _deviceInfo         = deviceInfo;
     _deviceInfoService  = deviceInfoService;
     _batteryInfoService = batteryInfoService;
 }