Package org.openhab.binding.withings.internal.api

Examples of org.openhab.binding.withings.internal.api.WithingsApiClient


  private void updateItemStates(
      Map<String, WithingsBindingConfig> withingsBindings) {
    try {

      WithingsApiClient client = this.withingsApiClients.get(0);
      List<MeasureGroup> measures = client.getMeasures(lastUpdate);

      if (measures == null || measures.isEmpty()) {
        logger.info("No new measures found since the last update.");
        return;
      }
View Full Code Here

TOP

Related Classes of org.openhab.binding.withings.internal.api.WithingsApiClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.