Examples of updateItem()


Examples of org.openhab.binding.omnilink.internal.model.Auxiliary.updateItem()

                auxiliary = new Auxiliary(p, celius);
                auxMap.put(number, auxiliary);
              }
              config.setDevice(auxiliary);
              auxiliary.setProperties(p);
              auxiliary.updateItem(provider.getItem(itemName), config,
                  eventPublisher);
            }
              break;
            case ZONE_STATUS_ARMING:
            case ZONE_STATUS_CURRENT:
View Full Code Here

Examples of org.openhab.binding.omnilink.internal.model.Thermostat.updateItem()

                thermo = new Thermostat(p, celius);
                thermostatMap.put(number, thermo);
              }
              config.setDevice(thermo);
              thermo.setProperties(p);
              thermo.updateItem(provider.getItem(itemName),
                  config, eventPublisher);
            }
              break;
            case AUDIOZONE_MUTE:
            case AUDIOZONE_POWER:
View Full Code Here

Examples of org.openhab.binding.omnilink.internal.model.Unit.updateItem()

                unit = new Unit(p);
                unitMap.put(number, unit);
              }
              config.setDevice(unit);
              unit.setProperties(p);
              unit.updateItem(provider.getItem(itemName), config,
                  eventPublisher);
            }
              break;
            case THERMO_COOL_POINT:
            case THERMO_FAN_MODE:
View Full Code Here

Examples of org.openhab.binding.omnilink.internal.model.Zone.updateItem()

                zone = new Zone(p);
                zoneMap.put(number, zone);
              }
              config.setDevice(zone);
              zone.setProperties(p);
              zone.updateItem(provider.getItem(itemName), config,
                  eventPublisher);
            }
              break;
            case BUTTON: {
              ButtonProperties p = readButtonProperties(config.getNumber());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.