Examples of doIgnoreScene()


Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

          if (!device.containsSceneConfig(sceneId)) {
            getSceneSpec(device, sceneId);
          }

          if (!device.doIgnoreScene(sceneId)) {
            short output = device.getSceneOutputValue(sceneId);
            if (output != -1) {
              device.setOutputValue(output);
            } else {
              initDeviceOutputValue(device,
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

            if (!device.containsSceneConfig(sceneId)) {
              getSceneSpec(device, sceneId);
            }

            if (!device.doIgnoreScene(sceneId)) {
              short output = device.getSceneOutputValue(sceneId);
              if (output != -1) {
                device.setOutputValue(output);
              } else {
                initDeviceOutputValue(device,
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                if (!device.containsSceneConfig(sceneId)) {
                  getSceneSpec(device, sceneId);
                }

                if (isDimmScene(sceneId)) {
                  if (!device.doIgnoreScene(sceneId)) {
                    handleDimmScene(device, sceneId,
                        (short) -1, true);
                  }
                } else if (stateMapper.isMappable(sceneId)) {
                  boolean shouldBeOn = stateMapper
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                  }
                } else if (stateMapper.isMappable(sceneId)) {
                  boolean shouldBeOn = stateMapper
                      .getMapping(sceneId);

                  if (!device.doIgnoreScene(sceneId)) {
                    if (shouldBeOn) {
                      device.setOutputValue(device
                          .getMaxOutPutValue());
                    } else {
                      device.setOutputValue(0);
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                    } else {
                      device.setOutputValue(0);
                    }
                  }
                } else {
                  if (!device.doIgnoreScene(sceneId)) {
                    short value = device
                        .getSceneOutputValue(sceneId);
                    if (value != -1) {
                      device.setOutputValue(value);
                    } else {
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                              .containsSceneConfig(sceneId)) {
                            getSceneSpec(device,
                                sceneId);
                          }

                          if (!device
                              .doIgnoreScene(sceneId)) {
                            handleDimmScene(
                                deviceMap
                                    .get(dsid),
                                sceneId,
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                              getSceneSpec(
                                  device,
                                  sceneId);
                            }

                            if (!device
                                .doIgnoreScene(sceneId)) {
                              handleDimmScene(
                                  deviceMap
                                      .get(dsid),
                                  sceneId,
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                              .containsSceneConfig(sceneId)) {
                            getSceneSpec(device,
                                sceneId);
                          }

                          if (!device
                              .doIgnoreScene(sceneId)) {

                            if (shouldBeOn) {
                              device.setOutputValue(device
                                  .getMaxOutPutValue());
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                              getSceneSpec(
                                  device,
                                  sceneId);
                            }

                            if (!device
                                .doIgnoreScene(sceneId)) {

                              if (shouldBeOn) {
                                device.setOutputValue(device
                                    .getMaxOutPutValue());
View Full Code Here

Examples of org.openhab.binding.digitalstrom.internal.client.entity.Device.doIgnoreScene()

                              getSceneSpec(
                                  device,
                                  sceneId);
                            }

                            if (!device
                                .doIgnoreScene(sceneId)) {
                              short sceneValue = device
                                  .getSceneOutputValue(sceneId);
                              if (sceneValue == -1) {
                                initDeviceOutputValue(
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.