/***
* Constructor
*/
public SensorController(ISensor sensor) {
this.view = new SensorView(this);
view.setConfirmation(ModelPreferences.getInstance().isEnableConfirmation());
ModelPreferences.getInstance().register(this);
this.sensor = null;
if (sensor != null) {
this.setSensor(sensor);