Package ola.proto.Ola

Examples of ola.proto.Ola.TimeCode


     * @param minutes
     * @param seconds
     * @return true if call succeeded.
     */
    public boolean sendTimeCode(TimeCodeType type, int frames, int hours, int minutes, int seconds) {
        TimeCode request = TimeCode.newBuilder()
                .setFrames(frames)
                .setHours(hours)
                .setMinutes(minutes)
                .setSeconds(seconds)
                .setType(type)
View Full Code Here

TOP

Related Classes of ola.proto.Ola.TimeCode

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.