bunti/src/main/java/de/ctdo/bunti/dmx/DMXMixer.java

13 lines
241 B
Java

package de.ctdo.bunti.dmx;
import java.util.Map;
import de.ctdo.bunti.model.BuntiDevice;
public interface DMXMixer {
void setDMX512Channel(int channel, int value);
void updateDevice(BuntiDevice device, Map<String, Object> options);
}