Package org.openhab.binding.epsonprojector.internal.EpsonProjectorDevice

Examples of org.openhab.binding.epsonprojector.internal.EpsonProjectorDevice.Color


        return new StringType(background.toString());
      case BRIGHTNESS:
        int brightness = remoteController.getBrightness();
        return new DecimalType(brightness);
      case COLOR:
        Color color = remoteController.getColor();
        return new StringType(color.toString());
      case COLOR_MODE:
        ColorMode colorMode = remoteController.getColorMode();
        return new StringType(colorMode.toString());
      case COLOR_TEMP:
        int ctemp = remoteController.getColorTemperature();
View Full Code Here

TOP

Related Classes of org.openhab.binding.epsonprojector.internal.EpsonProjectorDevice.Color

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.