Examples of DSCAlarmDeviceType


Examples of org.openhab.binding.dscalarm.internal.model.DSCAlarmDeviceType

   
    if (sections.length < 2 || sections.length > 4) {
      throw new BindingConfigParseException("Invalid number of sections in the binding: " + bindingConfig);
    }
   
    DSCAlarmDeviceType dscAlarmDeviceType = null;
    int partitionId = 0;
    int zoneId = 0;
    DSCAlarmItemType dscAlarmItemType = null;

    try{
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.DSCAlarmDeviceType

    Item item = null;
    for (DSCAlarmBindingProvider prov : providers) {
      dscAlarmBindingConfig = prov.getDSCAlarmBindingConfig(itemName);
      item = prov.getItem(itemName);
      if( dscAlarmBindingConfig != null) {
        DSCAlarmDeviceType dscAlarmDeviceType = dscAlarmBindingConfig.getDeviceType();
        int partitionId;
        int zoneId;
   
        logger.debug("internalReceiveCommand():  Item Name: {} Command: {} Item Device Type: {}",itemName,command,dscAlarmDeviceType);
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.DSCAlarmDeviceType

   */
  public synchronized void updateDeviceItem(Item item, DSCAlarmBindingConfig config, EventPublisher eventPublisher, DSCAlarmEvent event) {
    logger.debug("updateDeviceItem(): Item Name: {}", item.getName());

    if( config != null) {
      DSCAlarmDeviceType dscAlarmDeviceType = config.getDeviceType();
      int panelId = 1;
      int partitionId;
      int zoneId;
      int keypadId = 1;
 
View Full Code Here

Examples of org.openhab.binding.dscalarm.internal.model.DSCAlarmDeviceType

   */
  public synchronized void updateDeviceProperties(Item item, DSCAlarmBindingConfig config, int state, String description) {
    logger.debug("updateDeviceProperties(): Item Name: {}", item.getName());
 
    if( config != null) {
      DSCAlarmDeviceType dscAlarmDeviceType = config.getDeviceType();
      int panelId = 1;
      int partitionId;
      int zoneId;
      int keypadId = 1;
 
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.