Auto answers :
1 - For force FGRM-222 calibration you have to use that code in .js file at the click of the button (for exemple calibration) :
// Calibrationp button action
widget.find('[data-ui-field=calibration]').on('click', function () {
HG.Control.Modules.ServiceCall("Config.ParameterSet", module.Domain, module.Address, "29/1", function (data) { });
});
2 - For pause, I am in time to solve the issue, I can get the instant basic value, but when I read it, even with a timeout; the value is not yet set in the parameter module :
// Stop button action
widget.find('[data-ui-field=stop]').on('click', function () {
HG.Control.Modules.ServiceCall("Basic.Get", module.Domain, module.Address, null, function (data) { });
setTimeout( function() {
var getBasic = HG.WebApp.Utility.GetModulePropertyByName(module, "ZWaveNodeBasic");
var newBasic = 0;
newBasic = getLevel.Value.replace(',','.') ;
HG.Control.Modules.ServiceCall("Basic.Set", module.Domain, module.Address, newBasic, function (data) { });
},400) ;
});