Examples of stopDeviceAdjustment()


Examples of org.openhab.binding.insteonhub.internal.hardware.InsteonHubProxy.stopDeviceAdjustment()

            adjustmentType = InsteonHubAdjustmentType.DIM;
          proxy.startDeviceAdjustment(deviceId, adjustmentType);
        } else if (command instanceof StopMoveType) {
          // Stop => Stop Brighten/Dim
          if (command == StopMoveType.STOP) {
            proxy.stopDeviceAdjustment(deviceId);
          }
        } else {
          // set level from 0 to 100 percent value
          byte percentByte = Byte.parseByte(command.toString());
          float percent = percentByte * .01f;
 
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.