await MySensorCoreHelper.CallSensorcoreApiAsync(async () => {

#if DEBUG
                _placeMonitor = await PlaceMonitorSimulator.GetDefaultAsync();
#else
                if (await TrackPointMonitor.IsSupportedAsync())
                {
                    _placeMonitor = await PlaceMonitor.GetDefaultAsync();
                }
                else
                    return;
#endif
                var maison = await _placeMonitor.GetHomeAsync();

                Debug.WriteLine("Maison : position {0} , rayon {1}", maison.Position, maison.Radius);

                var boulot = await _placeMonitor.GetWorkAsync();

                Debug.WriteLine("Boulot : position {0} , rayon {1}", boulot.Position, boulot.Radius);

                var lieuxconnus = await _placeMonitor.GetKnownPlacesAsync();

                Debug.WriteLine("Lieux connus : ");

                foreach (var reading in lieuxconnus)
                {
                    Debug.WriteLine("Type {0}, position {1} , rayon {2}", reading.Kind, reading.Position, reading.Radius);
                }

});