import {IonicView, DeviceMotion} from 'ionic/ionic'; @IonicView({ template: ` Device Motion
{{accel.x}} {{accel.y}} {{accel.z}}
` }) export class DeviceMotionPage { constructor() { DeviceMotion.watchAcceleration().source.subscribe((accel) => { this.accel = accel.acceleration; }); } }