rxpoweredup
Version:
A Typescript RxJS-based library for controlling LEGO Powered UP hubs & peripherals.
19 lines (18 loc) • 888 B
TypeScript
import { IReplyParser } from '../../hub';
import { MessageType } from '../../constants';
import { InboundMessage, RawMessage } from '../../types';
export declare class PortModeInformationReplyParser implements IReplyParser<MessageType.portModeInformation> {
readonly messageType = MessageType.portModeInformation;
parseMessage(message: RawMessage<MessageType.portModeInformation>): InboundMessage & {
messageType: MessageType.portModeInformation;
};
private parsePortModeInformationName;
private parsePortModeInformationRawRange;
private parsePortModeInformationPctRange;
private parsePortModeInformationSiRange;
private parsePortModeInformationSymbol;
private parsePortModeInformationMapping;
private parsePortModeInformationMotorBias;
private parsePortModeInformationCapabilityBits;
private parsePortModeInformationValueFormat;
}