Page 1 : Mettre dans la fonction qui permet de changer de page
ouvrirPage() {
this.navCtrl.push(Page2Page,{tension:13,courant:this.courantMoteur});
}
Dans la page 2, nous récupérons les élément avec :
export class Page2Page {
public tensio;
public courant;
constructor( public navCtrl:NavController, public navParams:NavParams) {
this.tension = navParams.get('tension');
this.courant = navParams.get('courant');
....