Hello community!
By definition the DimmerItem accepts the following data types and commands:
acceptedDataTypes.add(OnOffType.class);
acceptedDataTypes.add(PercentType.class);
acceptedDataTypes.add(UnDefType.class);
acceptedCommandTypes.add(OnOffType.class);
acceptedCommandTypes.add(IncreaseDecreaseType.class);
acceptedCommandTypes.add(PercentType.class);
How is it possible to define a dimmer channel that supports all these commands ??? The channel that I have defined so far, only supports PercentType
Thanks for the help!!
BR,
Randy