Пример #1
0
  public ClimateController(Context context, KaaClient client, EventBus eventBus) {
    mPreferences = PreferenceManager.getDefaultSharedPreferences(context);
    mClient = client;

    mEventBus = eventBus;
    mThermostatDevice = new ThermostatDevice(mPreferences, client, eventBus);
    mEventBus.register(this);
    mClient.setAttachedListener(this);
    mClient.setDetachedListener(this);
    mClient.setEndpointAccessToken(DEFAULT_CLIMATE_CONTROL_ACCESS_TOKEN);
  }