updateFromDiscoverResponse method

void updateFromDiscoverResponse(
  1. ScpResponseDiscover responseDiscover
)

Implementation

void updateFromDiscoverResponse(ScpResponseDiscover responseDiscover) {
  this.deviceType = responseDiscover.getDeviceType();
  this.deviceId = responseDiscover.getDeviceId();
  this.deviceName = responseDiscover.getDeviceName();
  this.controlActions = responseDiscover.getControlActions();
  this.measureActions = responseDiscover.getMeasureActions();
  this.currentPasswordNumber = responseDiscover.getCurrentPasswordNumber();
}