Package ola.proto.Ola

Examples of ola.proto.Ola.RDMRequest


     * @param universe
     * @param data
     * @return RDMResponse
     */
    public RDMResponse sendRDMCommand(UID uid, int subDevice, int paramId, boolean isSet, boolean includeRawResponse, int universe, short[] data) {
        RDMRequest request = RDMRequest.newBuilder()
                .setUid(uid)
                .setSubDevice(subDevice)
                .setParamId(paramId)
                .setIsSet(isSet)
                .setIncludeRawResponse(includeRawResponse)
View Full Code Here

TOP

Related Classes of ola.proto.Ola.RDMRequest

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.