@zaber/motion 2.11.2 → 2.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1538 -3009
- package/dist/binding/wasm/zaber-motion-lib.wasm +0 -0
- package/dist/lib/ascii/all_axes.js +8 -8
- package/dist/lib/ascii/all_axes.js.map +1 -1
- package/dist/lib/ascii/axis.d.ts +39 -6
- package/dist/lib/ascii/axis.js +77 -24
- package/dist/lib/ascii/axis.js.map +1 -1
- package/dist/lib/ascii/axis_settings.d.ts +19 -0
- package/dist/lib/ascii/axis_settings.js +48 -4
- package/dist/lib/ascii/axis_settings.js.map +1 -1
- package/dist/lib/ascii/connection.d.ts +2 -0
- package/dist/lib/ascii/connection.js +13 -11
- package/dist/lib/ascii/connection.js.map +1 -1
- package/dist/lib/ascii/device.d.ts +7 -0
- package/dist/lib/ascii/device.js +22 -13
- package/dist/lib/ascii/device.js.map +1 -1
- package/dist/lib/ascii/device_io.js +5 -5
- package/dist/lib/ascii/device_io.js.map +1 -1
- package/dist/lib/ascii/device_settings.d.ts +19 -0
- package/dist/lib/ascii/device_settings.js +45 -4
- package/dist/lib/ascii/device_settings.js.map +1 -1
- package/dist/lib/ascii/index.d.ts +1 -0
- package/dist/lib/ascii/index.js +4 -1
- package/dist/lib/ascii/index.js.map +1 -1
- package/dist/lib/ascii/lockstep.d.ts +33 -6
- package/dist/lib/ascii/lockstep.js +61 -16
- package/dist/lib/ascii/lockstep.js.map +1 -1
- package/dist/lib/ascii/oscilloscope.js +5 -5
- package/dist/lib/ascii/oscilloscope.js.map +1 -1
- package/dist/lib/ascii/oscilloscope_data.d.ts +1 -7
- package/dist/lib/ascii/oscilloscope_data.js +7 -24
- package/dist/lib/ascii/oscilloscope_data.js.map +1 -1
- package/dist/lib/ascii/servo_tuner.d.ts +11 -0
- package/dist/lib/ascii/servo_tuner.js +26 -4
- package/dist/lib/ascii/servo_tuner.js.map +1 -1
- package/dist/lib/ascii/setting_constants.d.ts +124 -0
- package/dist/lib/ascii/setting_constants.js +124 -0
- package/dist/lib/ascii/setting_constants.js.map +1 -1
- package/dist/lib/ascii/storage.d.ts +98 -0
- package/dist/lib/ascii/storage.js +220 -0
- package/dist/lib/ascii/storage.js.map +1 -0
- package/dist/lib/ascii/stream.d.ts +5 -5
- package/dist/lib/ascii/stream.js +19 -19
- package/dist/lib/ascii/stream.js.map +1 -1
- package/dist/lib/ascii/transport.js +2 -2
- package/dist/lib/ascii/transport.js.map +1 -1
- package/dist/lib/ascii_ns.d.ts +4 -0
- package/dist/lib/ascii_ns.js +2 -0
- package/dist/lib/ascii_ns.js.map +1 -1
- package/dist/lib/binary/connection.js +7 -7
- package/dist/lib/binary/connection.js.map +1 -1
- package/dist/lib/binary/device.js +30 -30
- package/dist/lib/binary/device.js.map +1 -1
- package/dist/lib/binary/device_settings.js +1 -1
- package/dist/lib/binary/device_settings.js.map +1 -1
- package/dist/lib/exceptions/command_too_long_exception.d.ts +14 -0
- package/dist/lib/exceptions/command_too_long_exception.js +32 -0
- package/dist/lib/exceptions/command_too_long_exception.js.map +1 -0
- package/dist/lib/exceptions/command_too_long_exception_data.d.ts +24 -0
- package/dist/lib/exceptions/command_too_long_exception_data.js +20 -0
- package/dist/lib/exceptions/command_too_long_exception_data.js.map +1 -0
- package/dist/lib/exceptions/index.d.ts +3 -0
- package/dist/lib/exceptions/index.js +8 -2
- package/dist/lib/exceptions/index.js.map +1 -1
- package/dist/lib/exceptions/no_value_for_key_exception.d.ts +7 -0
- package/dist/lib/exceptions/no_value_for_key_exception.js +17 -0
- package/dist/lib/exceptions/no_value_for_key_exception.js.map +1 -0
- package/dist/lib/gateway/convert_exceptions.js +2 -0
- package/dist/lib/gateway/convert_exceptions.js.map +1 -1
- package/dist/lib/gcode/offline_translator.js +3 -3
- package/dist/lib/gcode/offline_translator.js.map +1 -1
- package/dist/lib/gcode/translator.js +3 -3
- package/dist/lib/gcode/translator.js.map +1 -1
- package/dist/lib/protobufs/main_pb.d.ts +564 -1738
- package/dist/lib/protobufs/main_pb.js +12002 -20930
- package/dist/lib/protobufs/main_pb.js.map +1 -1
- package/dist/lib/tools.js +1 -1
- package/dist/lib/tools.js.map +1 -1
- package/dist/lib/units.d.ts +63 -1
- package/dist/lib/units.js +70 -1
- package/dist/lib/units.js.map +1 -1
- package/package.json +3 -2
|
@@ -92,6 +92,86 @@ export namespace EmptyRequest {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
+
export class BoolResponse extends jspb.Message {
|
|
96
|
+
getValue(): boolean;
|
|
97
|
+
setValue(value: boolean): void;
|
|
98
|
+
|
|
99
|
+
serializeBinary(): Uint8Array;
|
|
100
|
+
toObject(includeInstance?: boolean): BoolResponse.AsObject;
|
|
101
|
+
static toObject(includeInstance: boolean, msg: BoolResponse): BoolResponse.AsObject;
|
|
102
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
103
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
104
|
+
static serializeBinaryToWriter(message: BoolResponse, writer: jspb.BinaryWriter): void;
|
|
105
|
+
static deserializeBinary(bytes: Uint8Array): BoolResponse;
|
|
106
|
+
static deserializeBinaryFromReader(message: BoolResponse, reader: jspb.BinaryReader): BoolResponse;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export namespace BoolResponse {
|
|
110
|
+
export type AsObject = {
|
|
111
|
+
value: boolean,
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export class DoubleResponse extends jspb.Message {
|
|
116
|
+
getValue(): number;
|
|
117
|
+
setValue(value: number): void;
|
|
118
|
+
|
|
119
|
+
serializeBinary(): Uint8Array;
|
|
120
|
+
toObject(includeInstance?: boolean): DoubleResponse.AsObject;
|
|
121
|
+
static toObject(includeInstance: boolean, msg: DoubleResponse): DoubleResponse.AsObject;
|
|
122
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
123
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
124
|
+
static serializeBinaryToWriter(message: DoubleResponse, writer: jspb.BinaryWriter): void;
|
|
125
|
+
static deserializeBinary(bytes: Uint8Array): DoubleResponse;
|
|
126
|
+
static deserializeBinaryFromReader(message: DoubleResponse, reader: jspb.BinaryReader): DoubleResponse;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export namespace DoubleResponse {
|
|
130
|
+
export type AsObject = {
|
|
131
|
+
value: number,
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
export class IntResponse extends jspb.Message {
|
|
136
|
+
getValue(): number;
|
|
137
|
+
setValue(value: number): void;
|
|
138
|
+
|
|
139
|
+
serializeBinary(): Uint8Array;
|
|
140
|
+
toObject(includeInstance?: boolean): IntResponse.AsObject;
|
|
141
|
+
static toObject(includeInstance: boolean, msg: IntResponse): IntResponse.AsObject;
|
|
142
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
143
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
144
|
+
static serializeBinaryToWriter(message: IntResponse, writer: jspb.BinaryWriter): void;
|
|
145
|
+
static deserializeBinary(bytes: Uint8Array): IntResponse;
|
|
146
|
+
static deserializeBinaryFromReader(message: IntResponse, reader: jspb.BinaryReader): IntResponse;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export namespace IntResponse {
|
|
150
|
+
export type AsObject = {
|
|
151
|
+
value: number,
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export class StringResponse extends jspb.Message {
|
|
156
|
+
getValue(): string;
|
|
157
|
+
setValue(value: string): void;
|
|
158
|
+
|
|
159
|
+
serializeBinary(): Uint8Array;
|
|
160
|
+
toObject(includeInstance?: boolean): StringResponse.AsObject;
|
|
161
|
+
static toObject(includeInstance: boolean, msg: StringResponse): StringResponse.AsObject;
|
|
162
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
163
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
164
|
+
static serializeBinaryToWriter(message: StringResponse, writer: jspb.BinaryWriter): void;
|
|
165
|
+
static deserializeBinary(bytes: Uint8Array): StringResponse;
|
|
166
|
+
static deserializeBinaryFromReader(message: StringResponse, reader: jspb.BinaryReader): StringResponse;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export namespace StringResponse {
|
|
170
|
+
export type AsObject = {
|
|
171
|
+
value: string,
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
95
175
|
export class AxisIdentity extends jspb.Message {
|
|
96
176
|
getIsPeripheral(): boolean;
|
|
97
177
|
setIsPeripheral(value: boolean): void;
|
|
@@ -624,6 +704,38 @@ export namespace SetDeviceStateExceptionData {
|
|
|
624
704
|
}
|
|
625
705
|
}
|
|
626
706
|
|
|
707
|
+
export class CommandTooLongExceptionData extends jspb.Message {
|
|
708
|
+
getFit(): string;
|
|
709
|
+
setFit(value: string): void;
|
|
710
|
+
|
|
711
|
+
getRemainder(): string;
|
|
712
|
+
setRemainder(value: string): void;
|
|
713
|
+
|
|
714
|
+
getPacketSize(): number;
|
|
715
|
+
setPacketSize(value: number): void;
|
|
716
|
+
|
|
717
|
+
getPacketsMax(): number;
|
|
718
|
+
setPacketsMax(value: number): void;
|
|
719
|
+
|
|
720
|
+
serializeBinary(): Uint8Array;
|
|
721
|
+
toObject(includeInstance?: boolean): CommandTooLongExceptionData.AsObject;
|
|
722
|
+
static toObject(includeInstance: boolean, msg: CommandTooLongExceptionData): CommandTooLongExceptionData.AsObject;
|
|
723
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
724
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
725
|
+
static serializeBinaryToWriter(message: CommandTooLongExceptionData, writer: jspb.BinaryWriter): void;
|
|
726
|
+
static deserializeBinary(bytes: Uint8Array): CommandTooLongExceptionData;
|
|
727
|
+
static deserializeBinaryFromReader(message: CommandTooLongExceptionData, reader: jspb.BinaryReader): CommandTooLongExceptionData;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
export namespace CommandTooLongExceptionData {
|
|
731
|
+
export type AsObject = {
|
|
732
|
+
fit: string,
|
|
733
|
+
remainder: string,
|
|
734
|
+
packetSize: number,
|
|
735
|
+
packetsMax: number,
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
627
739
|
export class TestRequest extends jspb.Message {
|
|
628
740
|
getReturnError(): boolean;
|
|
629
741
|
setReturnError(value: boolean): void;
|
|
@@ -736,26 +848,6 @@ export namespace ToolsListSerialPortsResponse {
|
|
|
736
848
|
}
|
|
737
849
|
}
|
|
738
850
|
|
|
739
|
-
export class GetMessageRouterPipeResponse extends jspb.Message {
|
|
740
|
-
getValue(): string;
|
|
741
|
-
setValue(value: string): void;
|
|
742
|
-
|
|
743
|
-
serializeBinary(): Uint8Array;
|
|
744
|
-
toObject(includeInstance?: boolean): GetMessageRouterPipeResponse.AsObject;
|
|
745
|
-
static toObject(includeInstance: boolean, msg: GetMessageRouterPipeResponse): GetMessageRouterPipeResponse.AsObject;
|
|
746
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
747
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
748
|
-
static serializeBinaryToWriter(message: GetMessageRouterPipeResponse, writer: jspb.BinaryWriter): void;
|
|
749
|
-
static deserializeBinary(bytes: Uint8Array): GetMessageRouterPipeResponse;
|
|
750
|
-
static deserializeBinaryFromReader(message: GetMessageRouterPipeResponse, reader: jspb.BinaryReader): GetMessageRouterPipeResponse;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
export namespace GetMessageRouterPipeResponse {
|
|
754
|
-
export type AsObject = {
|
|
755
|
-
value: string,
|
|
756
|
-
}
|
|
757
|
-
}
|
|
758
|
-
|
|
759
851
|
export class SetDeviceDbSourceRequest extends jspb.Message {
|
|
760
852
|
getSourceType(): number;
|
|
761
853
|
setSourceType(value: number): void;
|
|
@@ -888,66 +980,26 @@ export namespace OpenInterfaceResponse {
|
|
|
888
980
|
}
|
|
889
981
|
}
|
|
890
982
|
|
|
891
|
-
export class
|
|
892
|
-
getInterfaceId(): number;
|
|
893
|
-
setInterfaceId(value: number): void;
|
|
894
|
-
|
|
895
|
-
serializeBinary(): Uint8Array;
|
|
896
|
-
toObject(includeInstance?: boolean): CloseInterfaceRequest.AsObject;
|
|
897
|
-
static toObject(includeInstance: boolean, msg: CloseInterfaceRequest): CloseInterfaceRequest.AsObject;
|
|
898
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
899
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
900
|
-
static serializeBinaryToWriter(message: CloseInterfaceRequest, writer: jspb.BinaryWriter): void;
|
|
901
|
-
static deserializeBinary(bytes: Uint8Array): CloseInterfaceRequest;
|
|
902
|
-
static deserializeBinaryFromReader(message: CloseInterfaceRequest, reader: jspb.BinaryReader): CloseInterfaceRequest;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
export namespace CloseInterfaceRequest {
|
|
906
|
-
export type AsObject = {
|
|
907
|
-
interfaceId: number,
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
export class EmptyInterfaceRequest extends jspb.Message {
|
|
983
|
+
export class InterfaceEmptyRequest extends jspb.Message {
|
|
912
984
|
getInterfaceId(): number;
|
|
913
985
|
setInterfaceId(value: number): void;
|
|
914
986
|
|
|
915
987
|
serializeBinary(): Uint8Array;
|
|
916
|
-
toObject(includeInstance?: boolean):
|
|
917
|
-
static toObject(includeInstance: boolean, msg:
|
|
988
|
+
toObject(includeInstance?: boolean): InterfaceEmptyRequest.AsObject;
|
|
989
|
+
static toObject(includeInstance: boolean, msg: InterfaceEmptyRequest): InterfaceEmptyRequest.AsObject;
|
|
918
990
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
919
991
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
920
|
-
static serializeBinaryToWriter(message:
|
|
921
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
922
|
-
static deserializeBinaryFromReader(message:
|
|
992
|
+
static serializeBinaryToWriter(message: InterfaceEmptyRequest, writer: jspb.BinaryWriter): void;
|
|
993
|
+
static deserializeBinary(bytes: Uint8Array): InterfaceEmptyRequest;
|
|
994
|
+
static deserializeBinaryFromReader(message: InterfaceEmptyRequest, reader: jspb.BinaryReader): InterfaceEmptyRequest;
|
|
923
995
|
}
|
|
924
996
|
|
|
925
|
-
export namespace
|
|
997
|
+
export namespace InterfaceEmptyRequest {
|
|
926
998
|
export type AsObject = {
|
|
927
999
|
interfaceId: number,
|
|
928
1000
|
}
|
|
929
1001
|
}
|
|
930
1002
|
|
|
931
|
-
export class GetInterfaceTimeoutResponse extends jspb.Message {
|
|
932
|
-
getValue(): number;
|
|
933
|
-
setValue(value: number): void;
|
|
934
|
-
|
|
935
|
-
serializeBinary(): Uint8Array;
|
|
936
|
-
toObject(includeInstance?: boolean): GetInterfaceTimeoutResponse.AsObject;
|
|
937
|
-
static toObject(includeInstance: boolean, msg: GetInterfaceTimeoutResponse): GetInterfaceTimeoutResponse.AsObject;
|
|
938
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
939
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
940
|
-
static serializeBinaryToWriter(message: GetInterfaceTimeoutResponse, writer: jspb.BinaryWriter): void;
|
|
941
|
-
static deserializeBinary(bytes: Uint8Array): GetInterfaceTimeoutResponse;
|
|
942
|
-
static deserializeBinaryFromReader(message: GetInterfaceTimeoutResponse, reader: jspb.BinaryReader): GetInterfaceTimeoutResponse;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
export namespace GetInterfaceTimeoutResponse {
|
|
946
|
-
export type AsObject = {
|
|
947
|
-
value: number,
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
|
|
951
1003
|
export class SetInterfaceTimeoutRequest extends jspb.Message {
|
|
952
1004
|
getInterfaceId(): number;
|
|
953
1005
|
setInterfaceId(value: number): void;
|
|
@@ -972,26 +1024,6 @@ export namespace SetInterfaceTimeoutRequest {
|
|
|
972
1024
|
}
|
|
973
1025
|
}
|
|
974
1026
|
|
|
975
|
-
export class GetInterfaceChecksumEnabledResponse extends jspb.Message {
|
|
976
|
-
getValue(): boolean;
|
|
977
|
-
setValue(value: boolean): void;
|
|
978
|
-
|
|
979
|
-
serializeBinary(): Uint8Array;
|
|
980
|
-
toObject(includeInstance?: boolean): GetInterfaceChecksumEnabledResponse.AsObject;
|
|
981
|
-
static toObject(includeInstance: boolean, msg: GetInterfaceChecksumEnabledResponse): GetInterfaceChecksumEnabledResponse.AsObject;
|
|
982
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
983
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
984
|
-
static serializeBinaryToWriter(message: GetInterfaceChecksumEnabledResponse, writer: jspb.BinaryWriter): void;
|
|
985
|
-
static deserializeBinary(bytes: Uint8Array): GetInterfaceChecksumEnabledResponse;
|
|
986
|
-
static deserializeBinaryFromReader(message: GetInterfaceChecksumEnabledResponse, reader: jspb.BinaryReader): GetInterfaceChecksumEnabledResponse;
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
export namespace GetInterfaceChecksumEnabledResponse {
|
|
990
|
-
export type AsObject = {
|
|
991
|
-
value: boolean,
|
|
992
|
-
}
|
|
993
|
-
}
|
|
994
|
-
|
|
995
1027
|
export class SetInterfaceChecksumEnabledRequest extends jspb.Message {
|
|
996
1028
|
getInterfaceId(): number;
|
|
997
1029
|
setInterfaceId(value: number): void;
|
|
@@ -1016,7 +1048,7 @@ export namespace SetInterfaceChecksumEnabledRequest {
|
|
|
1016
1048
|
}
|
|
1017
1049
|
}
|
|
1018
1050
|
|
|
1019
|
-
export class
|
|
1051
|
+
export class AxisEmptyRequest extends jspb.Message {
|
|
1020
1052
|
getInterfaceId(): number;
|
|
1021
1053
|
setInterfaceId(value: number): void;
|
|
1022
1054
|
|
|
@@ -1027,16 +1059,16 @@ export class ToStringRequest extends jspb.Message {
|
|
|
1027
1059
|
setAxis(value: number): void;
|
|
1028
1060
|
|
|
1029
1061
|
serializeBinary(): Uint8Array;
|
|
1030
|
-
toObject(includeInstance?: boolean):
|
|
1031
|
-
static toObject(includeInstance: boolean, msg:
|
|
1062
|
+
toObject(includeInstance?: boolean): AxisEmptyRequest.AsObject;
|
|
1063
|
+
static toObject(includeInstance: boolean, msg: AxisEmptyRequest): AxisEmptyRequest.AsObject;
|
|
1032
1064
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1033
1065
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1034
|
-
static serializeBinaryToWriter(message:
|
|
1035
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
1036
|
-
static deserializeBinaryFromReader(message:
|
|
1066
|
+
static serializeBinaryToWriter(message: AxisEmptyRequest, writer: jspb.BinaryWriter): void;
|
|
1067
|
+
static deserializeBinary(bytes: Uint8Array): AxisEmptyRequest;
|
|
1068
|
+
static deserializeBinaryFromReader(message: AxisEmptyRequest, reader: jspb.BinaryReader): AxisEmptyRequest;
|
|
1037
1069
|
}
|
|
1038
1070
|
|
|
1039
|
-
export namespace
|
|
1071
|
+
export namespace AxisEmptyRequest {
|
|
1040
1072
|
export type AsObject = {
|
|
1041
1073
|
interfaceId: number,
|
|
1042
1074
|
device: number,
|
|
@@ -1044,26 +1076,6 @@ export namespace ToStringRequest {
|
|
|
1044
1076
|
}
|
|
1045
1077
|
}
|
|
1046
1078
|
|
|
1047
|
-
export class ToStringResponse extends jspb.Message {
|
|
1048
|
-
getToStr(): string;
|
|
1049
|
-
setToStr(value: string): void;
|
|
1050
|
-
|
|
1051
|
-
serializeBinary(): Uint8Array;
|
|
1052
|
-
toObject(includeInstance?: boolean): ToStringResponse.AsObject;
|
|
1053
|
-
static toObject(includeInstance: boolean, msg: ToStringResponse): ToStringResponse.AsObject;
|
|
1054
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1055
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1056
|
-
static serializeBinaryToWriter(message: ToStringResponse, writer: jspb.BinaryWriter): void;
|
|
1057
|
-
static deserializeBinary(bytes: Uint8Array): ToStringResponse;
|
|
1058
|
-
static deserializeBinaryFromReader(message: ToStringResponse, reader: jspb.BinaryReader): ToStringResponse;
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
export namespace ToStringResponse {
|
|
1062
|
-
export type AsObject = {
|
|
1063
|
-
toStr: string,
|
|
1064
|
-
}
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
1079
|
export class GenericCommandRequest extends jspb.Message {
|
|
1068
1080
|
getInterfaceId(): number;
|
|
1069
1081
|
setInterfaceId(value: number): void;
|
|
@@ -1310,26 +1322,6 @@ export namespace DeviceRenumberRequest {
|
|
|
1310
1322
|
}
|
|
1311
1323
|
}
|
|
1312
1324
|
|
|
1313
|
-
export class DeviceRenumberResponse extends jspb.Message {
|
|
1314
|
-
getNumberDevices(): number;
|
|
1315
|
-
setNumberDevices(value: number): void;
|
|
1316
|
-
|
|
1317
|
-
serializeBinary(): Uint8Array;
|
|
1318
|
-
toObject(includeInstance?: boolean): DeviceRenumberResponse.AsObject;
|
|
1319
|
-
static toObject(includeInstance: boolean, msg: DeviceRenumberResponse): DeviceRenumberResponse.AsObject;
|
|
1320
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1321
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1322
|
-
static serializeBinaryToWriter(message: DeviceRenumberResponse, writer: jspb.BinaryWriter): void;
|
|
1323
|
-
static deserializeBinary(bytes: Uint8Array): DeviceRenumberResponse;
|
|
1324
|
-
static deserializeBinaryFromReader(message: DeviceRenumberResponse, reader: jspb.BinaryReader): DeviceRenumberResponse;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
export namespace DeviceRenumberResponse {
|
|
1328
|
-
export type AsObject = {
|
|
1329
|
-
numberDevices: number,
|
|
1330
|
-
}
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
1325
|
export class DeviceDetectRequest extends jspb.Message {
|
|
1334
1326
|
getInterfaceId(): number;
|
|
1335
1327
|
setInterfaceId(value: number): void;
|
|
@@ -1462,6 +1454,18 @@ export class DeviceMoveRequest extends jspb.Message {
|
|
|
1462
1454
|
getUnit(): string;
|
|
1463
1455
|
setUnit(value: string): void;
|
|
1464
1456
|
|
|
1457
|
+
getVelocity(): number;
|
|
1458
|
+
setVelocity(value: number): void;
|
|
1459
|
+
|
|
1460
|
+
getVelocityUnit(): string;
|
|
1461
|
+
setVelocityUnit(value: string): void;
|
|
1462
|
+
|
|
1463
|
+
getAcceleration(): number;
|
|
1464
|
+
setAcceleration(value: number): void;
|
|
1465
|
+
|
|
1466
|
+
getAccelerationUnit(): string;
|
|
1467
|
+
setAccelerationUnit(value: string): void;
|
|
1468
|
+
|
|
1465
1469
|
serializeBinary(): Uint8Array;
|
|
1466
1470
|
toObject(includeInstance?: boolean): DeviceMoveRequest.AsObject;
|
|
1467
1471
|
static toObject(includeInstance: boolean, msg: DeviceMoveRequest): DeviceMoveRequest.AsObject;
|
|
@@ -1481,6 +1485,10 @@ export namespace DeviceMoveRequest {
|
|
|
1481
1485
|
type: DeviceMoveRequest.MoveType,
|
|
1482
1486
|
arg: number,
|
|
1483
1487
|
unit: string,
|
|
1488
|
+
velocity: number,
|
|
1489
|
+
velocityUnit: string,
|
|
1490
|
+
acceleration: number,
|
|
1491
|
+
accelerationUnit: string,
|
|
1484
1492
|
}
|
|
1485
1493
|
|
|
1486
1494
|
export enum MoveType {
|
|
@@ -1524,30 +1532,6 @@ export namespace DeviceStopRequest {
|
|
|
1524
1532
|
}
|
|
1525
1533
|
}
|
|
1526
1534
|
|
|
1527
|
-
export class DeviceIdentifyRequest extends jspb.Message {
|
|
1528
|
-
getInterfaceId(): number;
|
|
1529
|
-
setInterfaceId(value: number): void;
|
|
1530
|
-
|
|
1531
|
-
getDevice(): number;
|
|
1532
|
-
setDevice(value: number): void;
|
|
1533
|
-
|
|
1534
|
-
serializeBinary(): Uint8Array;
|
|
1535
|
-
toObject(includeInstance?: boolean): DeviceIdentifyRequest.AsObject;
|
|
1536
|
-
static toObject(includeInstance: boolean, msg: DeviceIdentifyRequest): DeviceIdentifyRequest.AsObject;
|
|
1537
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1538
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1539
|
-
static serializeBinaryToWriter(message: DeviceIdentifyRequest, writer: jspb.BinaryWriter): void;
|
|
1540
|
-
static deserializeBinary(bytes: Uint8Array): DeviceIdentifyRequest;
|
|
1541
|
-
static deserializeBinaryFromReader(message: DeviceIdentifyRequest, reader: jspb.BinaryReader): DeviceIdentifyRequest;
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
export namespace DeviceIdentifyRequest {
|
|
1545
|
-
export type AsObject = {
|
|
1546
|
-
interfaceId: number,
|
|
1547
|
-
device: number,
|
|
1548
|
-
}
|
|
1549
|
-
}
|
|
1550
|
-
|
|
1551
1535
|
export class DeviceOnAllRequest extends jspb.Message {
|
|
1552
1536
|
getInterfaceId(): number;
|
|
1553
1537
|
setInterfaceId(value: number): void;
|
|
@@ -1594,30 +1578,6 @@ export namespace DeviceOnAllResponse {
|
|
|
1594
1578
|
}
|
|
1595
1579
|
}
|
|
1596
1580
|
|
|
1597
|
-
export class DeviceGetIdentityRequest extends jspb.Message {
|
|
1598
|
-
getInterfaceId(): number;
|
|
1599
|
-
setInterfaceId(value: number): void;
|
|
1600
|
-
|
|
1601
|
-
getDevice(): number;
|
|
1602
|
-
setDevice(value: number): void;
|
|
1603
|
-
|
|
1604
|
-
serializeBinary(): Uint8Array;
|
|
1605
|
-
toObject(includeInstance?: boolean): DeviceGetIdentityRequest.AsObject;
|
|
1606
|
-
static toObject(includeInstance: boolean, msg: DeviceGetIdentityRequest): DeviceGetIdentityRequest.AsObject;
|
|
1607
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1608
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1609
|
-
static serializeBinaryToWriter(message: DeviceGetIdentityRequest, writer: jspb.BinaryWriter): void;
|
|
1610
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetIdentityRequest;
|
|
1611
|
-
static deserializeBinaryFromReader(message: DeviceGetIdentityRequest, reader: jspb.BinaryReader): DeviceGetIdentityRequest;
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
export namespace DeviceGetIdentityRequest {
|
|
1615
|
-
export type AsObject = {
|
|
1616
|
-
interfaceId: number,
|
|
1617
|
-
device: number,
|
|
1618
|
-
}
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
1581
|
export class DeviceGetIdentityResponse extends jspb.Message {
|
|
1622
1582
|
hasIdentity(): boolean;
|
|
1623
1583
|
clearIdentity(): void;
|
|
@@ -1640,78 +1600,6 @@ export namespace DeviceGetIdentityResponse {
|
|
|
1640
1600
|
}
|
|
1641
1601
|
}
|
|
1642
1602
|
|
|
1643
|
-
export class DeviceGetIsIdentifiedRequest extends jspb.Message {
|
|
1644
|
-
getInterfaceId(): number;
|
|
1645
|
-
setInterfaceId(value: number): void;
|
|
1646
|
-
|
|
1647
|
-
getDevice(): number;
|
|
1648
|
-
setDevice(value: number): void;
|
|
1649
|
-
|
|
1650
|
-
serializeBinary(): Uint8Array;
|
|
1651
|
-
toObject(includeInstance?: boolean): DeviceGetIsIdentifiedRequest.AsObject;
|
|
1652
|
-
static toObject(includeInstance: boolean, msg: DeviceGetIsIdentifiedRequest): DeviceGetIsIdentifiedRequest.AsObject;
|
|
1653
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1654
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1655
|
-
static serializeBinaryToWriter(message: DeviceGetIsIdentifiedRequest, writer: jspb.BinaryWriter): void;
|
|
1656
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetIsIdentifiedRequest;
|
|
1657
|
-
static deserializeBinaryFromReader(message: DeviceGetIsIdentifiedRequest, reader: jspb.BinaryReader): DeviceGetIsIdentifiedRequest;
|
|
1658
|
-
}
|
|
1659
|
-
|
|
1660
|
-
export namespace DeviceGetIsIdentifiedRequest {
|
|
1661
|
-
export type AsObject = {
|
|
1662
|
-
interfaceId: number,
|
|
1663
|
-
device: number,
|
|
1664
|
-
}
|
|
1665
|
-
}
|
|
1666
|
-
|
|
1667
|
-
export class DeviceGetIsIdentifiedResponse extends jspb.Message {
|
|
1668
|
-
getIsIdentified(): boolean;
|
|
1669
|
-
setIsIdentified(value: boolean): void;
|
|
1670
|
-
|
|
1671
|
-
serializeBinary(): Uint8Array;
|
|
1672
|
-
toObject(includeInstance?: boolean): DeviceGetIsIdentifiedResponse.AsObject;
|
|
1673
|
-
static toObject(includeInstance: boolean, msg: DeviceGetIsIdentifiedResponse): DeviceGetIsIdentifiedResponse.AsObject;
|
|
1674
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1675
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1676
|
-
static serializeBinaryToWriter(message: DeviceGetIsIdentifiedResponse, writer: jspb.BinaryWriter): void;
|
|
1677
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetIsIdentifiedResponse;
|
|
1678
|
-
static deserializeBinaryFromReader(message: DeviceGetIsIdentifiedResponse, reader: jspb.BinaryReader): DeviceGetIsIdentifiedResponse;
|
|
1679
|
-
}
|
|
1680
|
-
|
|
1681
|
-
export namespace DeviceGetIsIdentifiedResponse {
|
|
1682
|
-
export type AsObject = {
|
|
1683
|
-
isIdentified: boolean,
|
|
1684
|
-
}
|
|
1685
|
-
}
|
|
1686
|
-
|
|
1687
|
-
export class DeviceGetAxisIdentityRequest extends jspb.Message {
|
|
1688
|
-
getInterfaceId(): number;
|
|
1689
|
-
setInterfaceId(value: number): void;
|
|
1690
|
-
|
|
1691
|
-
getDevice(): number;
|
|
1692
|
-
setDevice(value: number): void;
|
|
1693
|
-
|
|
1694
|
-
getAxis(): number;
|
|
1695
|
-
setAxis(value: number): void;
|
|
1696
|
-
|
|
1697
|
-
serializeBinary(): Uint8Array;
|
|
1698
|
-
toObject(includeInstance?: boolean): DeviceGetAxisIdentityRequest.AsObject;
|
|
1699
|
-
static toObject(includeInstance: boolean, msg: DeviceGetAxisIdentityRequest): DeviceGetAxisIdentityRequest.AsObject;
|
|
1700
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1701
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1702
|
-
static serializeBinaryToWriter(message: DeviceGetAxisIdentityRequest, writer: jspb.BinaryWriter): void;
|
|
1703
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetAxisIdentityRequest;
|
|
1704
|
-
static deserializeBinaryFromReader(message: DeviceGetAxisIdentityRequest, reader: jspb.BinaryReader): DeviceGetAxisIdentityRequest;
|
|
1705
|
-
}
|
|
1706
|
-
|
|
1707
|
-
export namespace DeviceGetAxisIdentityRequest {
|
|
1708
|
-
export type AsObject = {
|
|
1709
|
-
interfaceId: number,
|
|
1710
|
-
device: number,
|
|
1711
|
-
axis: number,
|
|
1712
|
-
}
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
1603
|
export class DeviceGetAxisIdentityResponse extends jspb.Message {
|
|
1716
1604
|
hasIdentity(): boolean;
|
|
1717
1605
|
clearIdentity(): void;
|
|
@@ -1734,54 +1622,6 @@ export namespace DeviceGetAxisIdentityResponse {
|
|
|
1734
1622
|
}
|
|
1735
1623
|
}
|
|
1736
1624
|
|
|
1737
|
-
export class DeviceIsBusyRequest extends jspb.Message {
|
|
1738
|
-
getInterfaceId(): number;
|
|
1739
|
-
setInterfaceId(value: number): void;
|
|
1740
|
-
|
|
1741
|
-
getDevice(): number;
|
|
1742
|
-
setDevice(value: number): void;
|
|
1743
|
-
|
|
1744
|
-
getAxis(): number;
|
|
1745
|
-
setAxis(value: number): void;
|
|
1746
|
-
|
|
1747
|
-
serializeBinary(): Uint8Array;
|
|
1748
|
-
toObject(includeInstance?: boolean): DeviceIsBusyRequest.AsObject;
|
|
1749
|
-
static toObject(includeInstance: boolean, msg: DeviceIsBusyRequest): DeviceIsBusyRequest.AsObject;
|
|
1750
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1751
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1752
|
-
static serializeBinaryToWriter(message: DeviceIsBusyRequest, writer: jspb.BinaryWriter): void;
|
|
1753
|
-
static deserializeBinary(bytes: Uint8Array): DeviceIsBusyRequest;
|
|
1754
|
-
static deserializeBinaryFromReader(message: DeviceIsBusyRequest, reader: jspb.BinaryReader): DeviceIsBusyRequest;
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1757
|
-
export namespace DeviceIsBusyRequest {
|
|
1758
|
-
export type AsObject = {
|
|
1759
|
-
interfaceId: number,
|
|
1760
|
-
device: number,
|
|
1761
|
-
axis: number,
|
|
1762
|
-
}
|
|
1763
|
-
}
|
|
1764
|
-
|
|
1765
|
-
export class DeviceIsBusyResponse extends jspb.Message {
|
|
1766
|
-
getIsBusy(): boolean;
|
|
1767
|
-
setIsBusy(value: boolean): void;
|
|
1768
|
-
|
|
1769
|
-
serializeBinary(): Uint8Array;
|
|
1770
|
-
toObject(includeInstance?: boolean): DeviceIsBusyResponse.AsObject;
|
|
1771
|
-
static toObject(includeInstance: boolean, msg: DeviceIsBusyResponse): DeviceIsBusyResponse.AsObject;
|
|
1772
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1773
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1774
|
-
static serializeBinaryToWriter(message: DeviceIsBusyResponse, writer: jspb.BinaryWriter): void;
|
|
1775
|
-
static deserializeBinary(bytes: Uint8Array): DeviceIsBusyResponse;
|
|
1776
|
-
static deserializeBinaryFromReader(message: DeviceIsBusyResponse, reader: jspb.BinaryReader): DeviceIsBusyResponse;
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
export namespace DeviceIsBusyResponse {
|
|
1780
|
-
export type AsObject = {
|
|
1781
|
-
isBusy: boolean,
|
|
1782
|
-
}
|
|
1783
|
-
}
|
|
1784
|
-
|
|
1785
1625
|
export class DeviceGetWarningsRequest extends jspb.Message {
|
|
1786
1626
|
getInterfaceId(): number;
|
|
1787
1627
|
setInterfaceId(value: number): void;
|
|
@@ -1968,26 +1808,6 @@ export namespace DeviceGetDigitalIORequest {
|
|
|
1968
1808
|
}
|
|
1969
1809
|
}
|
|
1970
1810
|
|
|
1971
|
-
export class DeviceGetDigitalIOResponse extends jspb.Message {
|
|
1972
|
-
getValue(): boolean;
|
|
1973
|
-
setValue(value: boolean): void;
|
|
1974
|
-
|
|
1975
|
-
serializeBinary(): Uint8Array;
|
|
1976
|
-
toObject(includeInstance?: boolean): DeviceGetDigitalIOResponse.AsObject;
|
|
1977
|
-
static toObject(includeInstance: boolean, msg: DeviceGetDigitalIOResponse): DeviceGetDigitalIOResponse.AsObject;
|
|
1978
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1979
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1980
|
-
static serializeBinaryToWriter(message: DeviceGetDigitalIOResponse, writer: jspb.BinaryWriter): void;
|
|
1981
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetDigitalIOResponse;
|
|
1982
|
-
static deserializeBinaryFromReader(message: DeviceGetDigitalIOResponse, reader: jspb.BinaryReader): DeviceGetDigitalIOResponse;
|
|
1983
|
-
}
|
|
1984
|
-
|
|
1985
|
-
export namespace DeviceGetDigitalIOResponse {
|
|
1986
|
-
export type AsObject = {
|
|
1987
|
-
value: boolean,
|
|
1988
|
-
}
|
|
1989
|
-
}
|
|
1990
|
-
|
|
1991
1811
|
export class DeviceGetAnalogIORequest extends jspb.Message {
|
|
1992
1812
|
getInterfaceId(): number;
|
|
1993
1813
|
setInterfaceId(value: number): void;
|
|
@@ -2020,26 +1840,6 @@ export namespace DeviceGetAnalogIORequest {
|
|
|
2020
1840
|
}
|
|
2021
1841
|
}
|
|
2022
1842
|
|
|
2023
|
-
export class DeviceGetAnalogIOResponse extends jspb.Message {
|
|
2024
|
-
getValue(): number;
|
|
2025
|
-
setValue(value: number): void;
|
|
2026
|
-
|
|
2027
|
-
serializeBinary(): Uint8Array;
|
|
2028
|
-
toObject(includeInstance?: boolean): DeviceGetAnalogIOResponse.AsObject;
|
|
2029
|
-
static toObject(includeInstance: boolean, msg: DeviceGetAnalogIOResponse): DeviceGetAnalogIOResponse.AsObject;
|
|
2030
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2031
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2032
|
-
static serializeBinaryToWriter(message: DeviceGetAnalogIOResponse, writer: jspb.BinaryWriter): void;
|
|
2033
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetAnalogIOResponse;
|
|
2034
|
-
static deserializeBinaryFromReader(message: DeviceGetAnalogIOResponse, reader: jspb.BinaryReader): DeviceGetAnalogIOResponse;
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
export namespace DeviceGetAnalogIOResponse {
|
|
2038
|
-
export type AsObject = {
|
|
2039
|
-
value: number,
|
|
2040
|
-
}
|
|
2041
|
-
}
|
|
2042
|
-
|
|
2043
1843
|
export class DeviceSetAllDigitalOutputsRequest extends jspb.Message {
|
|
2044
1844
|
getInterfaceId(): number;
|
|
2045
1845
|
setInterfaceId(value: number): void;
|
|
@@ -2164,30 +1964,6 @@ export namespace DeviceSetAnalogOutputRequest {
|
|
|
2164
1964
|
}
|
|
2165
1965
|
}
|
|
2166
1966
|
|
|
2167
|
-
export class DeviceGetIOChannelsInfoRequest extends jspb.Message {
|
|
2168
|
-
getInterfaceId(): number;
|
|
2169
|
-
setInterfaceId(value: number): void;
|
|
2170
|
-
|
|
2171
|
-
getDevice(): number;
|
|
2172
|
-
setDevice(value: number): void;
|
|
2173
|
-
|
|
2174
|
-
serializeBinary(): Uint8Array;
|
|
2175
|
-
toObject(includeInstance?: boolean): DeviceGetIOChannelsInfoRequest.AsObject;
|
|
2176
|
-
static toObject(includeInstance: boolean, msg: DeviceGetIOChannelsInfoRequest): DeviceGetIOChannelsInfoRequest.AsObject;
|
|
2177
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2178
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2179
|
-
static serializeBinaryToWriter(message: DeviceGetIOChannelsInfoRequest, writer: jspb.BinaryWriter): void;
|
|
2180
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetIOChannelsInfoRequest;
|
|
2181
|
-
static deserializeBinaryFromReader(message: DeviceGetIOChannelsInfoRequest, reader: jspb.BinaryReader): DeviceGetIOChannelsInfoRequest;
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
|
-
export namespace DeviceGetIOChannelsInfoRequest {
|
|
2185
|
-
export type AsObject = {
|
|
2186
|
-
interfaceId: number,
|
|
2187
|
-
device: number,
|
|
2188
|
-
}
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
1967
|
export class SetLogOutputRequest extends jspb.Message {
|
|
2192
1968
|
getMode(): number;
|
|
2193
1969
|
setMode(value: number): void;
|
|
@@ -2248,46 +2024,6 @@ export namespace DeviceGetSettingRequest {
|
|
|
2248
2024
|
}
|
|
2249
2025
|
}
|
|
2250
2026
|
|
|
2251
|
-
export class DeviceGetSettingResponse extends jspb.Message {
|
|
2252
|
-
getValue(): number;
|
|
2253
|
-
setValue(value: number): void;
|
|
2254
|
-
|
|
2255
|
-
serializeBinary(): Uint8Array;
|
|
2256
|
-
toObject(includeInstance?: boolean): DeviceGetSettingResponse.AsObject;
|
|
2257
|
-
static toObject(includeInstance: boolean, msg: DeviceGetSettingResponse): DeviceGetSettingResponse.AsObject;
|
|
2258
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2259
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2260
|
-
static serializeBinaryToWriter(message: DeviceGetSettingResponse, writer: jspb.BinaryWriter): void;
|
|
2261
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetSettingResponse;
|
|
2262
|
-
static deserializeBinaryFromReader(message: DeviceGetSettingResponse, reader: jspb.BinaryReader): DeviceGetSettingResponse;
|
|
2263
|
-
}
|
|
2264
|
-
|
|
2265
|
-
export namespace DeviceGetSettingResponse {
|
|
2266
|
-
export type AsObject = {
|
|
2267
|
-
value: number,
|
|
2268
|
-
}
|
|
2269
|
-
}
|
|
2270
|
-
|
|
2271
|
-
export class DeviceGetSettingStrResponse extends jspb.Message {
|
|
2272
|
-
getValue(): string;
|
|
2273
|
-
setValue(value: string): void;
|
|
2274
|
-
|
|
2275
|
-
serializeBinary(): Uint8Array;
|
|
2276
|
-
toObject(includeInstance?: boolean): DeviceGetSettingStrResponse.AsObject;
|
|
2277
|
-
static toObject(includeInstance: boolean, msg: DeviceGetSettingStrResponse): DeviceGetSettingStrResponse.AsObject;
|
|
2278
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2279
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2280
|
-
static serializeBinaryToWriter(message: DeviceGetSettingStrResponse, writer: jspb.BinaryWriter): void;
|
|
2281
|
-
static deserializeBinary(bytes: Uint8Array): DeviceGetSettingStrResponse;
|
|
2282
|
-
static deserializeBinaryFromReader(message: DeviceGetSettingStrResponse, reader: jspb.BinaryReader): DeviceGetSettingStrResponse;
|
|
2283
|
-
}
|
|
2284
|
-
|
|
2285
|
-
export namespace DeviceGetSettingStrResponse {
|
|
2286
|
-
export type AsObject = {
|
|
2287
|
-
value: string,
|
|
2288
|
-
}
|
|
2289
|
-
}
|
|
2290
|
-
|
|
2291
2027
|
export class DeviceConvertSettingRequest extends jspb.Message {
|
|
2292
2028
|
getInterfaceId(): number;
|
|
2293
2029
|
setInterfaceId(value: number): void;
|
|
@@ -2332,26 +2068,6 @@ export namespace DeviceConvertSettingRequest {
|
|
|
2332
2068
|
}
|
|
2333
2069
|
}
|
|
2334
2070
|
|
|
2335
|
-
export class DeviceConvertSettingResponse extends jspb.Message {
|
|
2336
|
-
getValue(): number;
|
|
2337
|
-
setValue(value: number): void;
|
|
2338
|
-
|
|
2339
|
-
serializeBinary(): Uint8Array;
|
|
2340
|
-
toObject(includeInstance?: boolean): DeviceConvertSettingResponse.AsObject;
|
|
2341
|
-
static toObject(includeInstance: boolean, msg: DeviceConvertSettingResponse): DeviceConvertSettingResponse.AsObject;
|
|
2342
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2343
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2344
|
-
static serializeBinaryToWriter(message: DeviceConvertSettingResponse, writer: jspb.BinaryWriter): void;
|
|
2345
|
-
static deserializeBinary(bytes: Uint8Array): DeviceConvertSettingResponse;
|
|
2346
|
-
static deserializeBinaryFromReader(message: DeviceConvertSettingResponse, reader: jspb.BinaryReader): DeviceConvertSettingResponse;
|
|
2347
|
-
}
|
|
2348
|
-
|
|
2349
|
-
export namespace DeviceConvertSettingResponse {
|
|
2350
|
-
export type AsObject = {
|
|
2351
|
-
value: number,
|
|
2352
|
-
}
|
|
2353
|
-
}
|
|
2354
|
-
|
|
2355
2071
|
export class DeviceSetSettingRequest extends jspb.Message {
|
|
2356
2072
|
getInterfaceId(): number;
|
|
2357
2073
|
setInterfaceId(value: number): void;
|
|
@@ -2466,74 +2182,6 @@ export namespace PrepareCommandRequest {
|
|
|
2466
2182
|
}
|
|
2467
2183
|
}
|
|
2468
2184
|
|
|
2469
|
-
export class PrepareCommandResponse extends jspb.Message {
|
|
2470
|
-
getCommand(): string;
|
|
2471
|
-
setCommand(value: string): void;
|
|
2472
|
-
|
|
2473
|
-
serializeBinary(): Uint8Array;
|
|
2474
|
-
toObject(includeInstance?: boolean): PrepareCommandResponse.AsObject;
|
|
2475
|
-
static toObject(includeInstance: boolean, msg: PrepareCommandResponse): PrepareCommandResponse.AsObject;
|
|
2476
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2477
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2478
|
-
static serializeBinaryToWriter(message: PrepareCommandResponse, writer: jspb.BinaryWriter): void;
|
|
2479
|
-
static deserializeBinary(bytes: Uint8Array): PrepareCommandResponse;
|
|
2480
|
-
static deserializeBinaryFromReader(message: PrepareCommandResponse, reader: jspb.BinaryReader): PrepareCommandResponse;
|
|
2481
|
-
}
|
|
2482
|
-
|
|
2483
|
-
export namespace PrepareCommandResponse {
|
|
2484
|
-
export type AsObject = {
|
|
2485
|
-
command: string,
|
|
2486
|
-
}
|
|
2487
|
-
}
|
|
2488
|
-
|
|
2489
|
-
export class DeviceParkRequest extends jspb.Message {
|
|
2490
|
-
getInterfaceId(): number;
|
|
2491
|
-
setInterfaceId(value: number): void;
|
|
2492
|
-
|
|
2493
|
-
getDevice(): number;
|
|
2494
|
-
setDevice(value: number): void;
|
|
2495
|
-
|
|
2496
|
-
getAxis(): number;
|
|
2497
|
-
setAxis(value: number): void;
|
|
2498
|
-
|
|
2499
|
-
serializeBinary(): Uint8Array;
|
|
2500
|
-
toObject(includeInstance?: boolean): DeviceParkRequest.AsObject;
|
|
2501
|
-
static toObject(includeInstance: boolean, msg: DeviceParkRequest): DeviceParkRequest.AsObject;
|
|
2502
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2503
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2504
|
-
static serializeBinaryToWriter(message: DeviceParkRequest, writer: jspb.BinaryWriter): void;
|
|
2505
|
-
static deserializeBinary(bytes: Uint8Array): DeviceParkRequest;
|
|
2506
|
-
static deserializeBinaryFromReader(message: DeviceParkRequest, reader: jspb.BinaryReader): DeviceParkRequest;
|
|
2507
|
-
}
|
|
2508
|
-
|
|
2509
|
-
export namespace DeviceParkRequest {
|
|
2510
|
-
export type AsObject = {
|
|
2511
|
-
interfaceId: number,
|
|
2512
|
-
device: number,
|
|
2513
|
-
axis: number,
|
|
2514
|
-
}
|
|
2515
|
-
}
|
|
2516
|
-
|
|
2517
|
-
export class DeviceIsParkedResponse extends jspb.Message {
|
|
2518
|
-
getIsParked(): boolean;
|
|
2519
|
-
setIsParked(value: boolean): void;
|
|
2520
|
-
|
|
2521
|
-
serializeBinary(): Uint8Array;
|
|
2522
|
-
toObject(includeInstance?: boolean): DeviceIsParkedResponse.AsObject;
|
|
2523
|
-
static toObject(includeInstance: boolean, msg: DeviceIsParkedResponse): DeviceIsParkedResponse.AsObject;
|
|
2524
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2525
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2526
|
-
static serializeBinaryToWriter(message: DeviceIsParkedResponse, writer: jspb.BinaryWriter): void;
|
|
2527
|
-
static deserializeBinary(bytes: Uint8Array): DeviceIsParkedResponse;
|
|
2528
|
-
static deserializeBinaryFromReader(message: DeviceIsParkedResponse, reader: jspb.BinaryReader): DeviceIsParkedResponse;
|
|
2529
|
-
}
|
|
2530
|
-
|
|
2531
|
-
export namespace DeviceIsParkedResponse {
|
|
2532
|
-
export type AsObject = {
|
|
2533
|
-
isParked: boolean,
|
|
2534
|
-
}
|
|
2535
|
-
}
|
|
2536
|
-
|
|
2537
2185
|
export class LockstepEnableRequest extends jspb.Message {
|
|
2538
2186
|
getInterfaceId(): number;
|
|
2539
2187
|
setInterfaceId(value: number): void;
|
|
@@ -2686,6 +2334,18 @@ export class LockstepMoveRequest extends jspb.Message {
|
|
|
2686
2334
|
getUnit(): string;
|
|
2687
2335
|
setUnit(value: string): void;
|
|
2688
2336
|
|
|
2337
|
+
getVelocity(): number;
|
|
2338
|
+
setVelocity(value: number): void;
|
|
2339
|
+
|
|
2340
|
+
getVelocityUnit(): string;
|
|
2341
|
+
setVelocityUnit(value: string): void;
|
|
2342
|
+
|
|
2343
|
+
getAcceleration(): number;
|
|
2344
|
+
setAcceleration(value: number): void;
|
|
2345
|
+
|
|
2346
|
+
getAccelerationUnit(): string;
|
|
2347
|
+
setAccelerationUnit(value: string): void;
|
|
2348
|
+
|
|
2689
2349
|
serializeBinary(): Uint8Array;
|
|
2690
2350
|
toObject(includeInstance?: boolean): LockstepMoveRequest.AsObject;
|
|
2691
2351
|
static toObject(includeInstance: boolean, msg: LockstepMoveRequest): LockstepMoveRequest.AsObject;
|
|
@@ -2705,6 +2365,10 @@ export namespace LockstepMoveRequest {
|
|
|
2705
2365
|
type: LockstepMoveRequest.MoveType,
|
|
2706
2366
|
arg: number,
|
|
2707
2367
|
unit: string,
|
|
2368
|
+
velocity: number,
|
|
2369
|
+
velocityUnit: string,
|
|
2370
|
+
acceleration: number,
|
|
2371
|
+
accelerationUnit: string,
|
|
2708
2372
|
}
|
|
2709
2373
|
|
|
2710
2374
|
export enum MoveType {
|
|
@@ -2748,7 +2412,7 @@ export namespace LockstepWaitUntilIdleRequest {
|
|
|
2748
2412
|
}
|
|
2749
2413
|
}
|
|
2750
2414
|
|
|
2751
|
-
export class
|
|
2415
|
+
export class LockstepEmptyRequest extends jspb.Message {
|
|
2752
2416
|
getInterfaceId(): number;
|
|
2753
2417
|
setInterfaceId(value: number): void;
|
|
2754
2418
|
|
|
@@ -2759,64 +2423,16 @@ export class LockstepIsBusyRequest extends jspb.Message {
|
|
|
2759
2423
|
setLockstepGroupId(value: number): void;
|
|
2760
2424
|
|
|
2761
2425
|
serializeBinary(): Uint8Array;
|
|
2762
|
-
toObject(includeInstance?: boolean):
|
|
2763
|
-
static toObject(includeInstance: boolean, msg:
|
|
2426
|
+
toObject(includeInstance?: boolean): LockstepEmptyRequest.AsObject;
|
|
2427
|
+
static toObject(includeInstance: boolean, msg: LockstepEmptyRequest): LockstepEmptyRequest.AsObject;
|
|
2764
2428
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2765
2429
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2766
|
-
static serializeBinaryToWriter(message:
|
|
2767
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2768
|
-
static deserializeBinaryFromReader(message:
|
|
2430
|
+
static serializeBinaryToWriter(message: LockstepEmptyRequest, writer: jspb.BinaryWriter): void;
|
|
2431
|
+
static deserializeBinary(bytes: Uint8Array): LockstepEmptyRequest;
|
|
2432
|
+
static deserializeBinaryFromReader(message: LockstepEmptyRequest, reader: jspb.BinaryReader): LockstepEmptyRequest;
|
|
2769
2433
|
}
|
|
2770
2434
|
|
|
2771
|
-
export namespace
|
|
2772
|
-
export type AsObject = {
|
|
2773
|
-
interfaceId: number,
|
|
2774
|
-
device: number,
|
|
2775
|
-
lockstepGroupId: number,
|
|
2776
|
-
}
|
|
2777
|
-
}
|
|
2778
|
-
|
|
2779
|
-
export class LockstepIsBusyResponse extends jspb.Message {
|
|
2780
|
-
getIsBusy(): boolean;
|
|
2781
|
-
setIsBusy(value: boolean): void;
|
|
2782
|
-
|
|
2783
|
-
serializeBinary(): Uint8Array;
|
|
2784
|
-
toObject(includeInstance?: boolean): LockstepIsBusyResponse.AsObject;
|
|
2785
|
-
static toObject(includeInstance: boolean, msg: LockstepIsBusyResponse): LockstepIsBusyResponse.AsObject;
|
|
2786
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2787
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2788
|
-
static serializeBinaryToWriter(message: LockstepIsBusyResponse, writer: jspb.BinaryWriter): void;
|
|
2789
|
-
static deserializeBinary(bytes: Uint8Array): LockstepIsBusyResponse;
|
|
2790
|
-
static deserializeBinaryFromReader(message: LockstepIsBusyResponse, reader: jspb.BinaryReader): LockstepIsBusyResponse;
|
|
2791
|
-
}
|
|
2792
|
-
|
|
2793
|
-
export namespace LockstepIsBusyResponse {
|
|
2794
|
-
export type AsObject = {
|
|
2795
|
-
isBusy: boolean,
|
|
2796
|
-
}
|
|
2797
|
-
}
|
|
2798
|
-
|
|
2799
|
-
export class LockstepGetAxesRequest extends jspb.Message {
|
|
2800
|
-
getInterfaceId(): number;
|
|
2801
|
-
setInterfaceId(value: number): void;
|
|
2802
|
-
|
|
2803
|
-
getDevice(): number;
|
|
2804
|
-
setDevice(value: number): void;
|
|
2805
|
-
|
|
2806
|
-
getLockstepGroupId(): number;
|
|
2807
|
-
setLockstepGroupId(value: number): void;
|
|
2808
|
-
|
|
2809
|
-
serializeBinary(): Uint8Array;
|
|
2810
|
-
toObject(includeInstance?: boolean): LockstepGetAxesRequest.AsObject;
|
|
2811
|
-
static toObject(includeInstance: boolean, msg: LockstepGetAxesRequest): LockstepGetAxesRequest.AsObject;
|
|
2812
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2813
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2814
|
-
static serializeBinaryToWriter(message: LockstepGetAxesRequest, writer: jspb.BinaryWriter): void;
|
|
2815
|
-
static deserializeBinary(bytes: Uint8Array): LockstepGetAxesRequest;
|
|
2816
|
-
static deserializeBinaryFromReader(message: LockstepGetAxesRequest, reader: jspb.BinaryReader): LockstepGetAxesRequest;
|
|
2817
|
-
}
|
|
2818
|
-
|
|
2819
|
-
export namespace LockstepGetAxesRequest {
|
|
2435
|
+
export namespace LockstepEmptyRequest {
|
|
2820
2436
|
export type AsObject = {
|
|
2821
2437
|
interfaceId: number,
|
|
2822
2438
|
device: number,
|
|
@@ -2878,34 +2494,6 @@ export namespace LockstepGetAxesResponse {
|
|
|
2878
2494
|
}
|
|
2879
2495
|
}
|
|
2880
2496
|
|
|
2881
|
-
export class LockstepGetAxisNumbersRequest extends jspb.Message {
|
|
2882
|
-
getInterfaceId(): number;
|
|
2883
|
-
setInterfaceId(value: number): void;
|
|
2884
|
-
|
|
2885
|
-
getDevice(): number;
|
|
2886
|
-
setDevice(value: number): void;
|
|
2887
|
-
|
|
2888
|
-
getLockstepGroupId(): number;
|
|
2889
|
-
setLockstepGroupId(value: number): void;
|
|
2890
|
-
|
|
2891
|
-
serializeBinary(): Uint8Array;
|
|
2892
|
-
toObject(includeInstance?: boolean): LockstepGetAxisNumbersRequest.AsObject;
|
|
2893
|
-
static toObject(includeInstance: boolean, msg: LockstepGetAxisNumbersRequest): LockstepGetAxisNumbersRequest.AsObject;
|
|
2894
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2895
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2896
|
-
static serializeBinaryToWriter(message: LockstepGetAxisNumbersRequest, writer: jspb.BinaryWriter): void;
|
|
2897
|
-
static deserializeBinary(bytes: Uint8Array): LockstepGetAxisNumbersRequest;
|
|
2898
|
-
static deserializeBinaryFromReader(message: LockstepGetAxisNumbersRequest, reader: jspb.BinaryReader): LockstepGetAxisNumbersRequest;
|
|
2899
|
-
}
|
|
2900
|
-
|
|
2901
|
-
export namespace LockstepGetAxisNumbersRequest {
|
|
2902
|
-
export type AsObject = {
|
|
2903
|
-
interfaceId: number,
|
|
2904
|
-
device: number,
|
|
2905
|
-
lockstepGroupId: number,
|
|
2906
|
-
}
|
|
2907
|
-
}
|
|
2908
|
-
|
|
2909
2497
|
export class LockstepGetAxisNumbersResponse extends jspb.Message {
|
|
2910
2498
|
clearAxesList(): void;
|
|
2911
2499
|
getAxesList(): Array<number>;
|
|
@@ -3036,245 +2624,95 @@ export namespace LockstepGetOffsetsResponse {
|
|
|
3036
2624
|
}
|
|
3037
2625
|
}
|
|
3038
2626
|
|
|
3039
|
-
export class
|
|
2627
|
+
export class OscilloscopeAddChannelRequest extends jspb.Message {
|
|
3040
2628
|
getInterfaceId(): number;
|
|
3041
2629
|
setInterfaceId(value: number): void;
|
|
3042
2630
|
|
|
3043
2631
|
getDevice(): number;
|
|
3044
2632
|
setDevice(value: number): void;
|
|
3045
2633
|
|
|
3046
|
-
|
|
3047
|
-
|
|
2634
|
+
getAxis(): number;
|
|
2635
|
+
setAxis(value: number): void;
|
|
2636
|
+
|
|
2637
|
+
getSetting(): string;
|
|
2638
|
+
setSetting(value: string): void;
|
|
3048
2639
|
|
|
3049
2640
|
serializeBinary(): Uint8Array;
|
|
3050
|
-
toObject(includeInstance?: boolean):
|
|
3051
|
-
static toObject(includeInstance: boolean, msg:
|
|
2641
|
+
toObject(includeInstance?: boolean): OscilloscopeAddChannelRequest.AsObject;
|
|
2642
|
+
static toObject(includeInstance: boolean, msg: OscilloscopeAddChannelRequest): OscilloscopeAddChannelRequest.AsObject;
|
|
3052
2643
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3053
2644
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3054
|
-
static serializeBinaryToWriter(message:
|
|
3055
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
3056
|
-
static deserializeBinaryFromReader(message:
|
|
2645
|
+
static serializeBinaryToWriter(message: OscilloscopeAddChannelRequest, writer: jspb.BinaryWriter): void;
|
|
2646
|
+
static deserializeBinary(bytes: Uint8Array): OscilloscopeAddChannelRequest;
|
|
2647
|
+
static deserializeBinaryFromReader(message: OscilloscopeAddChannelRequest, reader: jspb.BinaryReader): OscilloscopeAddChannelRequest;
|
|
3057
2648
|
}
|
|
3058
2649
|
|
|
3059
|
-
export namespace
|
|
2650
|
+
export namespace OscilloscopeAddChannelRequest {
|
|
3060
2651
|
export type AsObject = {
|
|
3061
2652
|
interfaceId: number,
|
|
3062
2653
|
device: number,
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
}
|
|
3066
|
-
|
|
3067
|
-
export class LockstepIsEnabledResponse extends jspb.Message {
|
|
3068
|
-
getIsEnabled(): boolean;
|
|
3069
|
-
setIsEnabled(value: boolean): void;
|
|
3070
|
-
|
|
3071
|
-
serializeBinary(): Uint8Array;
|
|
3072
|
-
toObject(includeInstance?: boolean): LockstepIsEnabledResponse.AsObject;
|
|
3073
|
-
static toObject(includeInstance: boolean, msg: LockstepIsEnabledResponse): LockstepIsEnabledResponse.AsObject;
|
|
3074
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3075
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3076
|
-
static serializeBinaryToWriter(message: LockstepIsEnabledResponse, writer: jspb.BinaryWriter): void;
|
|
3077
|
-
static deserializeBinary(bytes: Uint8Array): LockstepIsEnabledResponse;
|
|
3078
|
-
static deserializeBinaryFromReader(message: LockstepIsEnabledResponse, reader: jspb.BinaryReader): LockstepIsEnabledResponse;
|
|
3079
|
-
}
|
|
3080
|
-
|
|
3081
|
-
export namespace LockstepIsEnabledResponse {
|
|
3082
|
-
export type AsObject = {
|
|
3083
|
-
isEnabled: boolean,
|
|
2654
|
+
axis: number,
|
|
2655
|
+
setting: string,
|
|
3084
2656
|
}
|
|
3085
2657
|
}
|
|
3086
2658
|
|
|
3087
|
-
export class
|
|
2659
|
+
export class OscilloscopeStartStopRequest extends jspb.Message {
|
|
3088
2660
|
getInterfaceId(): number;
|
|
3089
2661
|
setInterfaceId(value: number): void;
|
|
3090
2662
|
|
|
3091
2663
|
getDevice(): number;
|
|
3092
2664
|
setDevice(value: number): void;
|
|
3093
2665
|
|
|
3094
|
-
|
|
3095
|
-
|
|
2666
|
+
getStart(): boolean;
|
|
2667
|
+
setStart(value: boolean): void;
|
|
3096
2668
|
|
|
3097
2669
|
serializeBinary(): Uint8Array;
|
|
3098
|
-
toObject(includeInstance?: boolean):
|
|
3099
|
-
static toObject(includeInstance: boolean, msg:
|
|
2670
|
+
toObject(includeInstance?: boolean): OscilloscopeStartStopRequest.AsObject;
|
|
2671
|
+
static toObject(includeInstance: boolean, msg: OscilloscopeStartStopRequest): OscilloscopeStartStopRequest.AsObject;
|
|
3100
2672
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3101
2673
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3102
|
-
static serializeBinaryToWriter(message:
|
|
3103
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
3104
|
-
static deserializeBinaryFromReader(message:
|
|
2674
|
+
static serializeBinaryToWriter(message: OscilloscopeStartStopRequest, writer: jspb.BinaryWriter): void;
|
|
2675
|
+
static deserializeBinary(bytes: Uint8Array): OscilloscopeStartStopRequest;
|
|
2676
|
+
static deserializeBinaryFromReader(message: OscilloscopeStartStopRequest, reader: jspb.BinaryReader): OscilloscopeStartStopRequest;
|
|
3105
2677
|
}
|
|
3106
2678
|
|
|
3107
|
-
export namespace
|
|
2679
|
+
export namespace OscilloscopeStartStopRequest {
|
|
3108
2680
|
export type AsObject = {
|
|
3109
2681
|
interfaceId: number,
|
|
3110
2682
|
device: number,
|
|
3111
|
-
|
|
2683
|
+
start: boolean,
|
|
3112
2684
|
}
|
|
3113
2685
|
}
|
|
3114
2686
|
|
|
3115
|
-
export class
|
|
3116
|
-
|
|
3117
|
-
|
|
2687
|
+
export class OscilloscopeReadResponse extends jspb.Message {
|
|
2688
|
+
clearDataIdsList(): void;
|
|
2689
|
+
getDataIdsList(): Array<number>;
|
|
2690
|
+
setDataIdsList(value: Array<number>): void;
|
|
2691
|
+
addDataIds(value: number, index?: number): number;
|
|
3118
2692
|
|
|
3119
2693
|
serializeBinary(): Uint8Array;
|
|
3120
|
-
toObject(includeInstance?: boolean):
|
|
3121
|
-
static toObject(includeInstance: boolean, msg:
|
|
2694
|
+
toObject(includeInstance?: boolean): OscilloscopeReadResponse.AsObject;
|
|
2695
|
+
static toObject(includeInstance: boolean, msg: OscilloscopeReadResponse): OscilloscopeReadResponse.AsObject;
|
|
3122
2696
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3123
2697
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3124
|
-
static serializeBinaryToWriter(message:
|
|
3125
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
3126
|
-
static deserializeBinaryFromReader(message:
|
|
2698
|
+
static serializeBinaryToWriter(message: OscilloscopeReadResponse, writer: jspb.BinaryWriter): void;
|
|
2699
|
+
static deserializeBinary(bytes: Uint8Array): OscilloscopeReadResponse;
|
|
2700
|
+
static deserializeBinaryFromReader(message: OscilloscopeReadResponse, reader: jspb.BinaryReader): OscilloscopeReadResponse;
|
|
3127
2701
|
}
|
|
3128
2702
|
|
|
3129
|
-
export namespace
|
|
2703
|
+
export namespace OscilloscopeReadResponse {
|
|
3130
2704
|
export type AsObject = {
|
|
3131
|
-
|
|
2705
|
+
dataIdsList: Array<number>,
|
|
3132
2706
|
}
|
|
3133
2707
|
}
|
|
3134
2708
|
|
|
3135
|
-
export class
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
getDevice(): number;
|
|
3140
|
-
setDevice(value: number): void;
|
|
3141
|
-
|
|
3142
|
-
getAxis(): number;
|
|
3143
|
-
setAxis(value: number): void;
|
|
3144
|
-
|
|
3145
|
-
getSetting(): string;
|
|
3146
|
-
setSetting(value: string): void;
|
|
2709
|
+
export class OscilloscopeDataIdentifier extends jspb.Message {
|
|
2710
|
+
getDataId(): number;
|
|
2711
|
+
setDataId(value: number): void;
|
|
3147
2712
|
|
|
3148
2713
|
serializeBinary(): Uint8Array;
|
|
3149
|
-
toObject(includeInstance?: boolean):
|
|
3150
|
-
static toObject(includeInstance: boolean, msg:
|
|
3151
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3152
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3153
|
-
static serializeBinaryToWriter(message: OscilloscopeAddChannelRequest, writer: jspb.BinaryWriter): void;
|
|
3154
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeAddChannelRequest;
|
|
3155
|
-
static deserializeBinaryFromReader(message: OscilloscopeAddChannelRequest, reader: jspb.BinaryReader): OscilloscopeAddChannelRequest;
|
|
3156
|
-
}
|
|
3157
|
-
|
|
3158
|
-
export namespace OscilloscopeAddChannelRequest {
|
|
3159
|
-
export type AsObject = {
|
|
3160
|
-
interfaceId: number,
|
|
3161
|
-
device: number,
|
|
3162
|
-
axis: number,
|
|
3163
|
-
setting: string,
|
|
3164
|
-
}
|
|
3165
|
-
}
|
|
3166
|
-
|
|
3167
|
-
export class OscilloscopeClearChannelsRequest extends jspb.Message {
|
|
3168
|
-
getInterfaceId(): number;
|
|
3169
|
-
setInterfaceId(value: number): void;
|
|
3170
|
-
|
|
3171
|
-
getDevice(): number;
|
|
3172
|
-
setDevice(value: number): void;
|
|
3173
|
-
|
|
3174
|
-
serializeBinary(): Uint8Array;
|
|
3175
|
-
toObject(includeInstance?: boolean): OscilloscopeClearChannelsRequest.AsObject;
|
|
3176
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeClearChannelsRequest): OscilloscopeClearChannelsRequest.AsObject;
|
|
3177
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3178
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3179
|
-
static serializeBinaryToWriter(message: OscilloscopeClearChannelsRequest, writer: jspb.BinaryWriter): void;
|
|
3180
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeClearChannelsRequest;
|
|
3181
|
-
static deserializeBinaryFromReader(message: OscilloscopeClearChannelsRequest, reader: jspb.BinaryReader): OscilloscopeClearChannelsRequest;
|
|
3182
|
-
}
|
|
3183
|
-
|
|
3184
|
-
export namespace OscilloscopeClearChannelsRequest {
|
|
3185
|
-
export type AsObject = {
|
|
3186
|
-
interfaceId: number,
|
|
3187
|
-
device: number,
|
|
3188
|
-
}
|
|
3189
|
-
}
|
|
3190
|
-
|
|
3191
|
-
export class OscilloscopeStartStopRequest extends jspb.Message {
|
|
3192
|
-
getInterfaceId(): number;
|
|
3193
|
-
setInterfaceId(value: number): void;
|
|
3194
|
-
|
|
3195
|
-
getDevice(): number;
|
|
3196
|
-
setDevice(value: number): void;
|
|
3197
|
-
|
|
3198
|
-
getStart(): boolean;
|
|
3199
|
-
setStart(value: boolean): void;
|
|
3200
|
-
|
|
3201
|
-
serializeBinary(): Uint8Array;
|
|
3202
|
-
toObject(includeInstance?: boolean): OscilloscopeStartStopRequest.AsObject;
|
|
3203
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeStartStopRequest): OscilloscopeStartStopRequest.AsObject;
|
|
3204
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3205
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3206
|
-
static serializeBinaryToWriter(message: OscilloscopeStartStopRequest, writer: jspb.BinaryWriter): void;
|
|
3207
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeStartStopRequest;
|
|
3208
|
-
static deserializeBinaryFromReader(message: OscilloscopeStartStopRequest, reader: jspb.BinaryReader): OscilloscopeStartStopRequest;
|
|
3209
|
-
}
|
|
3210
|
-
|
|
3211
|
-
export namespace OscilloscopeStartStopRequest {
|
|
3212
|
-
export type AsObject = {
|
|
3213
|
-
interfaceId: number,
|
|
3214
|
-
device: number,
|
|
3215
|
-
start: boolean,
|
|
3216
|
-
}
|
|
3217
|
-
}
|
|
3218
|
-
|
|
3219
|
-
export class OscilloscopeReadRequest extends jspb.Message {
|
|
3220
|
-
getInterfaceId(): number;
|
|
3221
|
-
setInterfaceId(value: number): void;
|
|
3222
|
-
|
|
3223
|
-
getDevice(): number;
|
|
3224
|
-
setDevice(value: number): void;
|
|
3225
|
-
|
|
3226
|
-
serializeBinary(): Uint8Array;
|
|
3227
|
-
toObject(includeInstance?: boolean): OscilloscopeReadRequest.AsObject;
|
|
3228
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeReadRequest): OscilloscopeReadRequest.AsObject;
|
|
3229
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3230
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3231
|
-
static serializeBinaryToWriter(message: OscilloscopeReadRequest, writer: jspb.BinaryWriter): void;
|
|
3232
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeReadRequest;
|
|
3233
|
-
static deserializeBinaryFromReader(message: OscilloscopeReadRequest, reader: jspb.BinaryReader): OscilloscopeReadRequest;
|
|
3234
|
-
}
|
|
3235
|
-
|
|
3236
|
-
export namespace OscilloscopeReadRequest {
|
|
3237
|
-
export type AsObject = {
|
|
3238
|
-
interfaceId: number,
|
|
3239
|
-
device: number,
|
|
3240
|
-
}
|
|
3241
|
-
}
|
|
3242
|
-
|
|
3243
|
-
export class OscilloscopeReadResponse extends jspb.Message {
|
|
3244
|
-
clearDataIdsList(): void;
|
|
3245
|
-
getDataIdsList(): Array<number>;
|
|
3246
|
-
setDataIdsList(value: Array<number>): void;
|
|
3247
|
-
addDataIds(value: number, index?: number): number;
|
|
3248
|
-
|
|
3249
|
-
serializeBinary(): Uint8Array;
|
|
3250
|
-
toObject(includeInstance?: boolean): OscilloscopeReadResponse.AsObject;
|
|
3251
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeReadResponse): OscilloscopeReadResponse.AsObject;
|
|
3252
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3253
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3254
|
-
static serializeBinaryToWriter(message: OscilloscopeReadResponse, writer: jspb.BinaryWriter): void;
|
|
3255
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeReadResponse;
|
|
3256
|
-
static deserializeBinaryFromReader(message: OscilloscopeReadResponse, reader: jspb.BinaryReader): OscilloscopeReadResponse;
|
|
3257
|
-
}
|
|
3258
|
-
|
|
3259
|
-
export namespace OscilloscopeReadResponse {
|
|
3260
|
-
export type AsObject = {
|
|
3261
|
-
dataIdsList: Array<number>,
|
|
3262
|
-
}
|
|
3263
|
-
}
|
|
3264
|
-
|
|
3265
|
-
export class OscilloscopeDataIdentifier extends jspb.Message {
|
|
3266
|
-
getInterfaceId(): number;
|
|
3267
|
-
setInterfaceId(value: number): void;
|
|
3268
|
-
|
|
3269
|
-
getDevice(): number;
|
|
3270
|
-
setDevice(value: number): void;
|
|
3271
|
-
|
|
3272
|
-
getDataId(): number;
|
|
3273
|
-
setDataId(value: number): void;
|
|
3274
|
-
|
|
3275
|
-
serializeBinary(): Uint8Array;
|
|
3276
|
-
toObject(includeInstance?: boolean): OscilloscopeDataIdentifier.AsObject;
|
|
3277
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeDataIdentifier): OscilloscopeDataIdentifier.AsObject;
|
|
2714
|
+
toObject(includeInstance?: boolean): OscilloscopeDataIdentifier.AsObject;
|
|
2715
|
+
static toObject(includeInstance: boolean, msg: OscilloscopeDataIdentifier): OscilloscopeDataIdentifier.AsObject;
|
|
3278
2716
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3279
2717
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3280
2718
|
static serializeBinaryToWriter(message: OscilloscopeDataIdentifier, writer: jspb.BinaryWriter): void;
|
|
@@ -3284,8 +2722,6 @@ export class OscilloscopeDataIdentifier extends jspb.Message {
|
|
|
3284
2722
|
|
|
3285
2723
|
export namespace OscilloscopeDataIdentifier {
|
|
3286
2724
|
export type AsObject = {
|
|
3287
|
-
interfaceId: number,
|
|
3288
|
-
device: number,
|
|
3289
2725
|
dataId: number,
|
|
3290
2726
|
}
|
|
3291
2727
|
}
|
|
@@ -3336,13 +2772,7 @@ export namespace OscilloscopeDataGetPropertiesResponse {
|
|
|
3336
2772
|
}
|
|
3337
2773
|
}
|
|
3338
2774
|
|
|
3339
|
-
export class
|
|
3340
|
-
getInterfaceId(): number;
|
|
3341
|
-
setInterfaceId(value: number): void;
|
|
3342
|
-
|
|
3343
|
-
getDevice(): number;
|
|
3344
|
-
setDevice(value: number): void;
|
|
3345
|
-
|
|
2775
|
+
export class OscilloscopeDataGetRequest extends jspb.Message {
|
|
3346
2776
|
getDataId(): number;
|
|
3347
2777
|
setDataId(value: number): void;
|
|
3348
2778
|
|
|
@@ -3350,51 +2780,23 @@ export class OscilloscopeDataGetSavedSettingRequest extends jspb.Message {
|
|
|
3350
2780
|
setUnit(value: string): void;
|
|
3351
2781
|
|
|
3352
2782
|
serializeBinary(): Uint8Array;
|
|
3353
|
-
toObject(includeInstance?: boolean):
|
|
3354
|
-
static toObject(includeInstance: boolean, msg:
|
|
2783
|
+
toObject(includeInstance?: boolean): OscilloscopeDataGetRequest.AsObject;
|
|
2784
|
+
static toObject(includeInstance: boolean, msg: OscilloscopeDataGetRequest): OscilloscopeDataGetRequest.AsObject;
|
|
3355
2785
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3356
2786
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3357
|
-
static serializeBinaryToWriter(message:
|
|
3358
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
3359
|
-
static deserializeBinaryFromReader(message:
|
|
2787
|
+
static serializeBinaryToWriter(message: OscilloscopeDataGetRequest, writer: jspb.BinaryWriter): void;
|
|
2788
|
+
static deserializeBinary(bytes: Uint8Array): OscilloscopeDataGetRequest;
|
|
2789
|
+
static deserializeBinaryFromReader(message: OscilloscopeDataGetRequest, reader: jspb.BinaryReader): OscilloscopeDataGetRequest;
|
|
3360
2790
|
}
|
|
3361
2791
|
|
|
3362
|
-
export namespace
|
|
2792
|
+
export namespace OscilloscopeDataGetRequest {
|
|
3363
2793
|
export type AsObject = {
|
|
3364
|
-
interfaceId: number,
|
|
3365
|
-
device: number,
|
|
3366
2794
|
dataId: number,
|
|
3367
2795
|
unit: string,
|
|
3368
2796
|
}
|
|
3369
2797
|
}
|
|
3370
2798
|
|
|
3371
|
-
export class OscilloscopeDataGetSavedSettingResponse extends jspb.Message {
|
|
3372
|
-
getValue(): number;
|
|
3373
|
-
setValue(value: number): void;
|
|
3374
|
-
|
|
3375
|
-
serializeBinary(): Uint8Array;
|
|
3376
|
-
toObject(includeInstance?: boolean): OscilloscopeDataGetSavedSettingResponse.AsObject;
|
|
3377
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeDataGetSavedSettingResponse): OscilloscopeDataGetSavedSettingResponse.AsObject;
|
|
3378
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3379
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3380
|
-
static serializeBinaryToWriter(message: OscilloscopeDataGetSavedSettingResponse, writer: jspb.BinaryWriter): void;
|
|
3381
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeDataGetSavedSettingResponse;
|
|
3382
|
-
static deserializeBinaryFromReader(message: OscilloscopeDataGetSavedSettingResponse, reader: jspb.BinaryReader): OscilloscopeDataGetSavedSettingResponse;
|
|
3383
|
-
}
|
|
3384
|
-
|
|
3385
|
-
export namespace OscilloscopeDataGetSavedSettingResponse {
|
|
3386
|
-
export type AsObject = {
|
|
3387
|
-
value: number,
|
|
3388
|
-
}
|
|
3389
|
-
}
|
|
3390
|
-
|
|
3391
2799
|
export class OscilloscopeDataGetSampleTimeRequest extends jspb.Message {
|
|
3392
|
-
getInterfaceId(): number;
|
|
3393
|
-
setInterfaceId(value: number): void;
|
|
3394
|
-
|
|
3395
|
-
getDevice(): number;
|
|
3396
|
-
setDevice(value: number): void;
|
|
3397
|
-
|
|
3398
2800
|
getDataId(): number;
|
|
3399
2801
|
setDataId(value: number): void;
|
|
3400
2802
|
|
|
@@ -3416,46 +2818,12 @@ export class OscilloscopeDataGetSampleTimeRequest extends jspb.Message {
|
|
|
3416
2818
|
|
|
3417
2819
|
export namespace OscilloscopeDataGetSampleTimeRequest {
|
|
3418
2820
|
export type AsObject = {
|
|
3419
|
-
interfaceId: number,
|
|
3420
|
-
device: number,
|
|
3421
2821
|
dataId: number,
|
|
3422
2822
|
unit: string,
|
|
3423
2823
|
index: number,
|
|
3424
2824
|
}
|
|
3425
2825
|
}
|
|
3426
2826
|
|
|
3427
|
-
export class OscilloscopeDataGetSamplesRequest extends jspb.Message {
|
|
3428
|
-
getInterfaceId(): number;
|
|
3429
|
-
setInterfaceId(value: number): void;
|
|
3430
|
-
|
|
3431
|
-
getDevice(): number;
|
|
3432
|
-
setDevice(value: number): void;
|
|
3433
|
-
|
|
3434
|
-
getDataId(): number;
|
|
3435
|
-
setDataId(value: number): void;
|
|
3436
|
-
|
|
3437
|
-
getUnit(): string;
|
|
3438
|
-
setUnit(value: string): void;
|
|
3439
|
-
|
|
3440
|
-
serializeBinary(): Uint8Array;
|
|
3441
|
-
toObject(includeInstance?: boolean): OscilloscopeDataGetSamplesRequest.AsObject;
|
|
3442
|
-
static toObject(includeInstance: boolean, msg: OscilloscopeDataGetSamplesRequest): OscilloscopeDataGetSamplesRequest.AsObject;
|
|
3443
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3444
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3445
|
-
static serializeBinaryToWriter(message: OscilloscopeDataGetSamplesRequest, writer: jspb.BinaryWriter): void;
|
|
3446
|
-
static deserializeBinary(bytes: Uint8Array): OscilloscopeDataGetSamplesRequest;
|
|
3447
|
-
static deserializeBinaryFromReader(message: OscilloscopeDataGetSamplesRequest, reader: jspb.BinaryReader): OscilloscopeDataGetSamplesRequest;
|
|
3448
|
-
}
|
|
3449
|
-
|
|
3450
|
-
export namespace OscilloscopeDataGetSamplesRequest {
|
|
3451
|
-
export type AsObject = {
|
|
3452
|
-
interfaceId: number,
|
|
3453
|
-
device: number,
|
|
3454
|
-
dataId: number,
|
|
3455
|
-
unit: string,
|
|
3456
|
-
}
|
|
3457
|
-
}
|
|
3458
|
-
|
|
3459
2827
|
export class OscilloscopeDataGetSamplesResponse extends jspb.Message {
|
|
3460
2828
|
clearDataList(): void;
|
|
3461
2829
|
getDataList(): Array<number>;
|
|
@@ -4185,7 +3553,7 @@ export namespace StreamWaitUntilIdleRequest {
|
|
|
4185
3553
|
}
|
|
4186
3554
|
}
|
|
4187
3555
|
|
|
4188
|
-
export class
|
|
3556
|
+
export class StreamEmptyRequest extends jspb.Message {
|
|
4189
3557
|
getInterfaceId(): number;
|
|
4190
3558
|
setInterfaceId(value: number): void;
|
|
4191
3559
|
|
|
@@ -4196,16 +3564,16 @@ export class StreamCorkRequest extends jspb.Message {
|
|
|
4196
3564
|
setStreamId(value: number): void;
|
|
4197
3565
|
|
|
4198
3566
|
serializeBinary(): Uint8Array;
|
|
4199
|
-
toObject(includeInstance?: boolean):
|
|
4200
|
-
static toObject(includeInstance: boolean, msg:
|
|
3567
|
+
toObject(includeInstance?: boolean): StreamEmptyRequest.AsObject;
|
|
3568
|
+
static toObject(includeInstance: boolean, msg: StreamEmptyRequest): StreamEmptyRequest.AsObject;
|
|
4201
3569
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4202
3570
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4203
|
-
static serializeBinaryToWriter(message:
|
|
4204
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
4205
|
-
static deserializeBinaryFromReader(message:
|
|
3571
|
+
static serializeBinaryToWriter(message: StreamEmptyRequest, writer: jspb.BinaryWriter): void;
|
|
3572
|
+
static deserializeBinary(bytes: Uint8Array): StreamEmptyRequest;
|
|
3573
|
+
static deserializeBinaryFromReader(message: StreamEmptyRequest, reader: jspb.BinaryReader): StreamEmptyRequest;
|
|
4206
3574
|
}
|
|
4207
3575
|
|
|
4208
|
-
export namespace
|
|
3576
|
+
export namespace StreamEmptyRequest {
|
|
4209
3577
|
export type AsObject = {
|
|
4210
3578
|
interfaceId: number,
|
|
4211
3579
|
device: number,
|
|
@@ -4213,7 +3581,29 @@ export namespace StreamCorkRequest {
|
|
|
4213
3581
|
}
|
|
4214
3582
|
}
|
|
4215
3583
|
|
|
4216
|
-
export class
|
|
3584
|
+
export class StreamGetAxesResponse extends jspb.Message {
|
|
3585
|
+
clearAxesList(): void;
|
|
3586
|
+
getAxesList(): Array<StreamAxisDefinition>;
|
|
3587
|
+
setAxesList(value: Array<StreamAxisDefinition>): void;
|
|
3588
|
+
addAxes(value?: StreamAxisDefinition, index?: number): StreamAxisDefinition;
|
|
3589
|
+
|
|
3590
|
+
serializeBinary(): Uint8Array;
|
|
3591
|
+
toObject(includeInstance?: boolean): StreamGetAxesResponse.AsObject;
|
|
3592
|
+
static toObject(includeInstance: boolean, msg: StreamGetAxesResponse): StreamGetAxesResponse.AsObject;
|
|
3593
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3594
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3595
|
+
static serializeBinaryToWriter(message: StreamGetAxesResponse, writer: jspb.BinaryWriter): void;
|
|
3596
|
+
static deserializeBinary(bytes: Uint8Array): StreamGetAxesResponse;
|
|
3597
|
+
static deserializeBinaryFromReader(message: StreamGetAxesResponse, reader: jspb.BinaryReader): StreamGetAxesResponse;
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3600
|
+
export namespace StreamGetAxesResponse {
|
|
3601
|
+
export type AsObject = {
|
|
3602
|
+
axesList: Array<StreamAxisDefinition.AsObject>,
|
|
3603
|
+
}
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
export class StreamGetMaxSpeedRequest extends jspb.Message {
|
|
4217
3607
|
getInterfaceId(): number;
|
|
4218
3608
|
setInterfaceId(value: number): void;
|
|
4219
3609
|
|
|
@@ -4223,25 +3613,29 @@ export class StreamUncorkRequest extends jspb.Message {
|
|
|
4223
3613
|
getStreamId(): number;
|
|
4224
3614
|
setStreamId(value: number): void;
|
|
4225
3615
|
|
|
3616
|
+
getUnit(): string;
|
|
3617
|
+
setUnit(value: string): void;
|
|
3618
|
+
|
|
4226
3619
|
serializeBinary(): Uint8Array;
|
|
4227
|
-
toObject(includeInstance?: boolean):
|
|
4228
|
-
static toObject(includeInstance: boolean, msg:
|
|
3620
|
+
toObject(includeInstance?: boolean): StreamGetMaxSpeedRequest.AsObject;
|
|
3621
|
+
static toObject(includeInstance: boolean, msg: StreamGetMaxSpeedRequest): StreamGetMaxSpeedRequest.AsObject;
|
|
4229
3622
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4230
3623
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4231
|
-
static serializeBinaryToWriter(message:
|
|
4232
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
4233
|
-
static deserializeBinaryFromReader(message:
|
|
3624
|
+
static serializeBinaryToWriter(message: StreamGetMaxSpeedRequest, writer: jspb.BinaryWriter): void;
|
|
3625
|
+
static deserializeBinary(bytes: Uint8Array): StreamGetMaxSpeedRequest;
|
|
3626
|
+
static deserializeBinaryFromReader(message: StreamGetMaxSpeedRequest, reader: jspb.BinaryReader): StreamGetMaxSpeedRequest;
|
|
4234
3627
|
}
|
|
4235
3628
|
|
|
4236
|
-
export namespace
|
|
3629
|
+
export namespace StreamGetMaxSpeedRequest {
|
|
4237
3630
|
export type AsObject = {
|
|
4238
3631
|
interfaceId: number,
|
|
4239
3632
|
device: number,
|
|
4240
3633
|
streamId: number,
|
|
3634
|
+
unit: string,
|
|
4241
3635
|
}
|
|
4242
3636
|
}
|
|
4243
3637
|
|
|
4244
|
-
export class
|
|
3638
|
+
export class StreamSetMaxSpeedRequest extends jspb.Message {
|
|
4245
3639
|
getInterfaceId(): number;
|
|
4246
3640
|
setInterfaceId(value: number): void;
|
|
4247
3641
|
|
|
@@ -4251,45 +3645,65 @@ export class StreamIsBusyRequest extends jspb.Message {
|
|
|
4251
3645
|
getStreamId(): number;
|
|
4252
3646
|
setStreamId(value: number): void;
|
|
4253
3647
|
|
|
3648
|
+
getMaxSpeed(): number;
|
|
3649
|
+
setMaxSpeed(value: number): void;
|
|
3650
|
+
|
|
3651
|
+
getUnit(): string;
|
|
3652
|
+
setUnit(value: string): void;
|
|
3653
|
+
|
|
4254
3654
|
serializeBinary(): Uint8Array;
|
|
4255
|
-
toObject(includeInstance?: boolean):
|
|
4256
|
-
static toObject(includeInstance: boolean, msg:
|
|
3655
|
+
toObject(includeInstance?: boolean): StreamSetMaxSpeedRequest.AsObject;
|
|
3656
|
+
static toObject(includeInstance: boolean, msg: StreamSetMaxSpeedRequest): StreamSetMaxSpeedRequest.AsObject;
|
|
4257
3657
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4258
3658
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4259
|
-
static serializeBinaryToWriter(message:
|
|
4260
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
4261
|
-
static deserializeBinaryFromReader(message:
|
|
3659
|
+
static serializeBinaryToWriter(message: StreamSetMaxSpeedRequest, writer: jspb.BinaryWriter): void;
|
|
3660
|
+
static deserializeBinary(bytes: Uint8Array): StreamSetMaxSpeedRequest;
|
|
3661
|
+
static deserializeBinaryFromReader(message: StreamSetMaxSpeedRequest, reader: jspb.BinaryReader): StreamSetMaxSpeedRequest;
|
|
4262
3662
|
}
|
|
4263
3663
|
|
|
4264
|
-
export namespace
|
|
3664
|
+
export namespace StreamSetMaxSpeedRequest {
|
|
4265
3665
|
export type AsObject = {
|
|
4266
3666
|
interfaceId: number,
|
|
4267
3667
|
device: number,
|
|
4268
3668
|
streamId: number,
|
|
3669
|
+
maxSpeed: number,
|
|
3670
|
+
unit: string,
|
|
4269
3671
|
}
|
|
4270
3672
|
}
|
|
4271
3673
|
|
|
4272
|
-
export class
|
|
4273
|
-
|
|
4274
|
-
|
|
3674
|
+
export class StreamGetMaxTangentialAccelerationRequest extends jspb.Message {
|
|
3675
|
+
getInterfaceId(): number;
|
|
3676
|
+
setInterfaceId(value: number): void;
|
|
3677
|
+
|
|
3678
|
+
getDevice(): number;
|
|
3679
|
+
setDevice(value: number): void;
|
|
3680
|
+
|
|
3681
|
+
getStreamId(): number;
|
|
3682
|
+
setStreamId(value: number): void;
|
|
3683
|
+
|
|
3684
|
+
getUnit(): string;
|
|
3685
|
+
setUnit(value: string): void;
|
|
4275
3686
|
|
|
4276
3687
|
serializeBinary(): Uint8Array;
|
|
4277
|
-
toObject(includeInstance?: boolean):
|
|
4278
|
-
static toObject(includeInstance: boolean, msg:
|
|
3688
|
+
toObject(includeInstance?: boolean): StreamGetMaxTangentialAccelerationRequest.AsObject;
|
|
3689
|
+
static toObject(includeInstance: boolean, msg: StreamGetMaxTangentialAccelerationRequest): StreamGetMaxTangentialAccelerationRequest.AsObject;
|
|
4279
3690
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4280
3691
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4281
|
-
static serializeBinaryToWriter(message:
|
|
4282
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
4283
|
-
static deserializeBinaryFromReader(message:
|
|
3692
|
+
static serializeBinaryToWriter(message: StreamGetMaxTangentialAccelerationRequest, writer: jspb.BinaryWriter): void;
|
|
3693
|
+
static deserializeBinary(bytes: Uint8Array): StreamGetMaxTangentialAccelerationRequest;
|
|
3694
|
+
static deserializeBinaryFromReader(message: StreamGetMaxTangentialAccelerationRequest, reader: jspb.BinaryReader): StreamGetMaxTangentialAccelerationRequest;
|
|
4284
3695
|
}
|
|
4285
3696
|
|
|
4286
|
-
export namespace
|
|
3697
|
+
export namespace StreamGetMaxTangentialAccelerationRequest {
|
|
4287
3698
|
export type AsObject = {
|
|
4288
|
-
|
|
3699
|
+
interfaceId: number,
|
|
3700
|
+
device: number,
|
|
3701
|
+
streamId: number,
|
|
3702
|
+
unit: string,
|
|
4289
3703
|
}
|
|
4290
3704
|
}
|
|
4291
3705
|
|
|
4292
|
-
export class
|
|
3706
|
+
export class StreamSetMaxTangentialAccelerationRequest extends jspb.Message {
|
|
4293
3707
|
getInterfaceId(): number;
|
|
4294
3708
|
setInterfaceId(value: number): void;
|
|
4295
3709
|
|
|
@@ -4299,267 +3713,29 @@ export class StreamGetAxesRequest extends jspb.Message {
|
|
|
4299
3713
|
getStreamId(): number;
|
|
4300
3714
|
setStreamId(value: number): void;
|
|
4301
3715
|
|
|
3716
|
+
getMaxTangentialAcceleration(): number;
|
|
3717
|
+
setMaxTangentialAcceleration(value: number): void;
|
|
3718
|
+
|
|
3719
|
+
getUnit(): string;
|
|
3720
|
+
setUnit(value: string): void;
|
|
3721
|
+
|
|
4302
3722
|
serializeBinary(): Uint8Array;
|
|
4303
|
-
toObject(includeInstance?: boolean):
|
|
4304
|
-
static toObject(includeInstance: boolean, msg:
|
|
3723
|
+
toObject(includeInstance?: boolean): StreamSetMaxTangentialAccelerationRequest.AsObject;
|
|
3724
|
+
static toObject(includeInstance: boolean, msg: StreamSetMaxTangentialAccelerationRequest): StreamSetMaxTangentialAccelerationRequest.AsObject;
|
|
4305
3725
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4306
3726
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4307
|
-
static serializeBinaryToWriter(message:
|
|
4308
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
4309
|
-
static deserializeBinaryFromReader(message:
|
|
3727
|
+
static serializeBinaryToWriter(message: StreamSetMaxTangentialAccelerationRequest, writer: jspb.BinaryWriter): void;
|
|
3728
|
+
static deserializeBinary(bytes: Uint8Array): StreamSetMaxTangentialAccelerationRequest;
|
|
3729
|
+
static deserializeBinaryFromReader(message: StreamSetMaxTangentialAccelerationRequest, reader: jspb.BinaryReader): StreamSetMaxTangentialAccelerationRequest;
|
|
4310
3730
|
}
|
|
4311
3731
|
|
|
4312
|
-
export namespace
|
|
3732
|
+
export namespace StreamSetMaxTangentialAccelerationRequest {
|
|
4313
3733
|
export type AsObject = {
|
|
4314
3734
|
interfaceId: number,
|
|
4315
3735
|
device: number,
|
|
4316
3736
|
streamId: number,
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
export class StreamGetAxesResponse extends jspb.Message {
|
|
4321
|
-
clearAxesList(): void;
|
|
4322
|
-
getAxesList(): Array<StreamAxisDefinition>;
|
|
4323
|
-
setAxesList(value: Array<StreamAxisDefinition>): void;
|
|
4324
|
-
addAxes(value?: StreamAxisDefinition, index?: number): StreamAxisDefinition;
|
|
4325
|
-
|
|
4326
|
-
serializeBinary(): Uint8Array;
|
|
4327
|
-
toObject(includeInstance?: boolean): StreamGetAxesResponse.AsObject;
|
|
4328
|
-
static toObject(includeInstance: boolean, msg: StreamGetAxesResponse): StreamGetAxesResponse.AsObject;
|
|
4329
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4330
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4331
|
-
static serializeBinaryToWriter(message: StreamGetAxesResponse, writer: jspb.BinaryWriter): void;
|
|
4332
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetAxesResponse;
|
|
4333
|
-
static deserializeBinaryFromReader(message: StreamGetAxesResponse, reader: jspb.BinaryReader): StreamGetAxesResponse;
|
|
4334
|
-
}
|
|
4335
|
-
|
|
4336
|
-
export namespace StreamGetAxesResponse {
|
|
4337
|
-
export type AsObject = {
|
|
4338
|
-
axesList: Array<StreamAxisDefinition.AsObject>,
|
|
4339
|
-
}
|
|
4340
|
-
}
|
|
4341
|
-
|
|
4342
|
-
export class StreamGetModeRequest extends jspb.Message {
|
|
4343
|
-
getInterfaceId(): number;
|
|
4344
|
-
setInterfaceId(value: number): void;
|
|
4345
|
-
|
|
4346
|
-
getDevice(): number;
|
|
4347
|
-
setDevice(value: number): void;
|
|
4348
|
-
|
|
4349
|
-
getStreamId(): number;
|
|
4350
|
-
setStreamId(value: number): void;
|
|
4351
|
-
|
|
4352
|
-
serializeBinary(): Uint8Array;
|
|
4353
|
-
toObject(includeInstance?: boolean): StreamGetModeRequest.AsObject;
|
|
4354
|
-
static toObject(includeInstance: boolean, msg: StreamGetModeRequest): StreamGetModeRequest.AsObject;
|
|
4355
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4356
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4357
|
-
static serializeBinaryToWriter(message: StreamGetModeRequest, writer: jspb.BinaryWriter): void;
|
|
4358
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetModeRequest;
|
|
4359
|
-
static deserializeBinaryFromReader(message: StreamGetModeRequest, reader: jspb.BinaryReader): StreamGetModeRequest;
|
|
4360
|
-
}
|
|
4361
|
-
|
|
4362
|
-
export namespace StreamGetModeRequest {
|
|
4363
|
-
export type AsObject = {
|
|
4364
|
-
interfaceId: number,
|
|
4365
|
-
device: number,
|
|
4366
|
-
streamId: number,
|
|
4367
|
-
}
|
|
4368
|
-
}
|
|
4369
|
-
|
|
4370
|
-
export class StreamGetModeResponse extends jspb.Message {
|
|
4371
|
-
getMode(): number;
|
|
4372
|
-
setMode(value: number): void;
|
|
4373
|
-
|
|
4374
|
-
serializeBinary(): Uint8Array;
|
|
4375
|
-
toObject(includeInstance?: boolean): StreamGetModeResponse.AsObject;
|
|
4376
|
-
static toObject(includeInstance: boolean, msg: StreamGetModeResponse): StreamGetModeResponse.AsObject;
|
|
4377
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4378
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4379
|
-
static serializeBinaryToWriter(message: StreamGetModeResponse, writer: jspb.BinaryWriter): void;
|
|
4380
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetModeResponse;
|
|
4381
|
-
static deserializeBinaryFromReader(message: StreamGetModeResponse, reader: jspb.BinaryReader): StreamGetModeResponse;
|
|
4382
|
-
}
|
|
4383
|
-
|
|
4384
|
-
export namespace StreamGetModeResponse {
|
|
4385
|
-
export type AsObject = {
|
|
4386
|
-
mode: number,
|
|
4387
|
-
}
|
|
4388
|
-
}
|
|
4389
|
-
|
|
4390
|
-
export class StreamGetMaxSpeedRequest extends jspb.Message {
|
|
4391
|
-
getInterfaceId(): number;
|
|
4392
|
-
setInterfaceId(value: number): void;
|
|
4393
|
-
|
|
4394
|
-
getDevice(): number;
|
|
4395
|
-
setDevice(value: number): void;
|
|
4396
|
-
|
|
4397
|
-
getStreamId(): number;
|
|
4398
|
-
setStreamId(value: number): void;
|
|
4399
|
-
|
|
4400
|
-
getUnit(): string;
|
|
4401
|
-
setUnit(value: string): void;
|
|
4402
|
-
|
|
4403
|
-
serializeBinary(): Uint8Array;
|
|
4404
|
-
toObject(includeInstance?: boolean): StreamGetMaxSpeedRequest.AsObject;
|
|
4405
|
-
static toObject(includeInstance: boolean, msg: StreamGetMaxSpeedRequest): StreamGetMaxSpeedRequest.AsObject;
|
|
4406
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4407
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4408
|
-
static serializeBinaryToWriter(message: StreamGetMaxSpeedRequest, writer: jspb.BinaryWriter): void;
|
|
4409
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetMaxSpeedRequest;
|
|
4410
|
-
static deserializeBinaryFromReader(message: StreamGetMaxSpeedRequest, reader: jspb.BinaryReader): StreamGetMaxSpeedRequest;
|
|
4411
|
-
}
|
|
4412
|
-
|
|
4413
|
-
export namespace StreamGetMaxSpeedRequest {
|
|
4414
|
-
export type AsObject = {
|
|
4415
|
-
interfaceId: number,
|
|
4416
|
-
device: number,
|
|
4417
|
-
streamId: number,
|
|
4418
|
-
unit: string,
|
|
4419
|
-
}
|
|
4420
|
-
}
|
|
4421
|
-
|
|
4422
|
-
export class StreamGetMaxSpeedResponse extends jspb.Message {
|
|
4423
|
-
getMaxSpeed(): number;
|
|
4424
|
-
setMaxSpeed(value: number): void;
|
|
4425
|
-
|
|
4426
|
-
serializeBinary(): Uint8Array;
|
|
4427
|
-
toObject(includeInstance?: boolean): StreamGetMaxSpeedResponse.AsObject;
|
|
4428
|
-
static toObject(includeInstance: boolean, msg: StreamGetMaxSpeedResponse): StreamGetMaxSpeedResponse.AsObject;
|
|
4429
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4430
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4431
|
-
static serializeBinaryToWriter(message: StreamGetMaxSpeedResponse, writer: jspb.BinaryWriter): void;
|
|
4432
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetMaxSpeedResponse;
|
|
4433
|
-
static deserializeBinaryFromReader(message: StreamGetMaxSpeedResponse, reader: jspb.BinaryReader): StreamGetMaxSpeedResponse;
|
|
4434
|
-
}
|
|
4435
|
-
|
|
4436
|
-
export namespace StreamGetMaxSpeedResponse {
|
|
4437
|
-
export type AsObject = {
|
|
4438
|
-
maxSpeed: number,
|
|
4439
|
-
}
|
|
4440
|
-
}
|
|
4441
|
-
|
|
4442
|
-
export class StreamSetMaxSpeedRequest extends jspb.Message {
|
|
4443
|
-
getInterfaceId(): number;
|
|
4444
|
-
setInterfaceId(value: number): void;
|
|
4445
|
-
|
|
4446
|
-
getDevice(): number;
|
|
4447
|
-
setDevice(value: number): void;
|
|
4448
|
-
|
|
4449
|
-
getStreamId(): number;
|
|
4450
|
-
setStreamId(value: number): void;
|
|
4451
|
-
|
|
4452
|
-
getMaxSpeed(): number;
|
|
4453
|
-
setMaxSpeed(value: number): void;
|
|
4454
|
-
|
|
4455
|
-
getUnit(): string;
|
|
4456
|
-
setUnit(value: string): void;
|
|
4457
|
-
|
|
4458
|
-
serializeBinary(): Uint8Array;
|
|
4459
|
-
toObject(includeInstance?: boolean): StreamSetMaxSpeedRequest.AsObject;
|
|
4460
|
-
static toObject(includeInstance: boolean, msg: StreamSetMaxSpeedRequest): StreamSetMaxSpeedRequest.AsObject;
|
|
4461
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4462
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4463
|
-
static serializeBinaryToWriter(message: StreamSetMaxSpeedRequest, writer: jspb.BinaryWriter): void;
|
|
4464
|
-
static deserializeBinary(bytes: Uint8Array): StreamSetMaxSpeedRequest;
|
|
4465
|
-
static deserializeBinaryFromReader(message: StreamSetMaxSpeedRequest, reader: jspb.BinaryReader): StreamSetMaxSpeedRequest;
|
|
4466
|
-
}
|
|
4467
|
-
|
|
4468
|
-
export namespace StreamSetMaxSpeedRequest {
|
|
4469
|
-
export type AsObject = {
|
|
4470
|
-
interfaceId: number,
|
|
4471
|
-
device: number,
|
|
4472
|
-
streamId: number,
|
|
4473
|
-
maxSpeed: number,
|
|
4474
|
-
unit: string,
|
|
4475
|
-
}
|
|
4476
|
-
}
|
|
4477
|
-
|
|
4478
|
-
export class StreamGetMaxTangentialAccelerationRequest extends jspb.Message {
|
|
4479
|
-
getInterfaceId(): number;
|
|
4480
|
-
setInterfaceId(value: number): void;
|
|
4481
|
-
|
|
4482
|
-
getDevice(): number;
|
|
4483
|
-
setDevice(value: number): void;
|
|
4484
|
-
|
|
4485
|
-
getStreamId(): number;
|
|
4486
|
-
setStreamId(value: number): void;
|
|
4487
|
-
|
|
4488
|
-
getUnit(): string;
|
|
4489
|
-
setUnit(value: string): void;
|
|
4490
|
-
|
|
4491
|
-
serializeBinary(): Uint8Array;
|
|
4492
|
-
toObject(includeInstance?: boolean): StreamGetMaxTangentialAccelerationRequest.AsObject;
|
|
4493
|
-
static toObject(includeInstance: boolean, msg: StreamGetMaxTangentialAccelerationRequest): StreamGetMaxTangentialAccelerationRequest.AsObject;
|
|
4494
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4495
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4496
|
-
static serializeBinaryToWriter(message: StreamGetMaxTangentialAccelerationRequest, writer: jspb.BinaryWriter): void;
|
|
4497
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetMaxTangentialAccelerationRequest;
|
|
4498
|
-
static deserializeBinaryFromReader(message: StreamGetMaxTangentialAccelerationRequest, reader: jspb.BinaryReader): StreamGetMaxTangentialAccelerationRequest;
|
|
4499
|
-
}
|
|
4500
|
-
|
|
4501
|
-
export namespace StreamGetMaxTangentialAccelerationRequest {
|
|
4502
|
-
export type AsObject = {
|
|
4503
|
-
interfaceId: number,
|
|
4504
|
-
device: number,
|
|
4505
|
-
streamId: number,
|
|
4506
|
-
unit: string,
|
|
4507
|
-
}
|
|
4508
|
-
}
|
|
4509
|
-
|
|
4510
|
-
export class StreamGetMaxTangentialAccelerationResponse extends jspb.Message {
|
|
4511
|
-
getMaxTangentialAcceleration(): number;
|
|
4512
|
-
setMaxTangentialAcceleration(value: number): void;
|
|
4513
|
-
|
|
4514
|
-
serializeBinary(): Uint8Array;
|
|
4515
|
-
toObject(includeInstance?: boolean): StreamGetMaxTangentialAccelerationResponse.AsObject;
|
|
4516
|
-
static toObject(includeInstance: boolean, msg: StreamGetMaxTangentialAccelerationResponse): StreamGetMaxTangentialAccelerationResponse.AsObject;
|
|
4517
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4518
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4519
|
-
static serializeBinaryToWriter(message: StreamGetMaxTangentialAccelerationResponse, writer: jspb.BinaryWriter): void;
|
|
4520
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetMaxTangentialAccelerationResponse;
|
|
4521
|
-
static deserializeBinaryFromReader(message: StreamGetMaxTangentialAccelerationResponse, reader: jspb.BinaryReader): StreamGetMaxTangentialAccelerationResponse;
|
|
4522
|
-
}
|
|
4523
|
-
|
|
4524
|
-
export namespace StreamGetMaxTangentialAccelerationResponse {
|
|
4525
|
-
export type AsObject = {
|
|
4526
|
-
maxTangentialAcceleration: number,
|
|
4527
|
-
}
|
|
4528
|
-
}
|
|
4529
|
-
|
|
4530
|
-
export class StreamSetMaxTangentialAccelerationRequest extends jspb.Message {
|
|
4531
|
-
getInterfaceId(): number;
|
|
4532
|
-
setInterfaceId(value: number): void;
|
|
4533
|
-
|
|
4534
|
-
getDevice(): number;
|
|
4535
|
-
setDevice(value: number): void;
|
|
4536
|
-
|
|
4537
|
-
getStreamId(): number;
|
|
4538
|
-
setStreamId(value: number): void;
|
|
4539
|
-
|
|
4540
|
-
getMaxTangentialAcceleration(): number;
|
|
4541
|
-
setMaxTangentialAcceleration(value: number): void;
|
|
4542
|
-
|
|
4543
|
-
getUnit(): string;
|
|
4544
|
-
setUnit(value: string): void;
|
|
4545
|
-
|
|
4546
|
-
serializeBinary(): Uint8Array;
|
|
4547
|
-
toObject(includeInstance?: boolean): StreamSetMaxTangentialAccelerationRequest.AsObject;
|
|
4548
|
-
static toObject(includeInstance: boolean, msg: StreamSetMaxTangentialAccelerationRequest): StreamSetMaxTangentialAccelerationRequest.AsObject;
|
|
4549
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4550
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4551
|
-
static serializeBinaryToWriter(message: StreamSetMaxTangentialAccelerationRequest, writer: jspb.BinaryWriter): void;
|
|
4552
|
-
static deserializeBinary(bytes: Uint8Array): StreamSetMaxTangentialAccelerationRequest;
|
|
4553
|
-
static deserializeBinaryFromReader(message: StreamSetMaxTangentialAccelerationRequest, reader: jspb.BinaryReader): StreamSetMaxTangentialAccelerationRequest;
|
|
4554
|
-
}
|
|
4555
|
-
|
|
4556
|
-
export namespace StreamSetMaxTangentialAccelerationRequest {
|
|
4557
|
-
export type AsObject = {
|
|
4558
|
-
interfaceId: number,
|
|
4559
|
-
device: number,
|
|
4560
|
-
streamId: number,
|
|
4561
|
-
maxTangentialAcceleration: number,
|
|
4562
|
-
unit: string,
|
|
3737
|
+
maxTangentialAcceleration: number,
|
|
3738
|
+
unit: string,
|
|
4563
3739
|
}
|
|
4564
3740
|
}
|
|
4565
3741
|
|
|
@@ -4588,118 +3764,14 @@ export class StreamGetMaxCentripetalAccelerationRequest extends jspb.Message {
|
|
|
4588
3764
|
|
|
4589
3765
|
export namespace StreamGetMaxCentripetalAccelerationRequest {
|
|
4590
3766
|
export type AsObject = {
|
|
4591
|
-
interfaceId: number,
|
|
4592
|
-
device: number,
|
|
4593
|
-
streamId: number,
|
|
4594
|
-
unit: string,
|
|
4595
|
-
}
|
|
4596
|
-
}
|
|
4597
|
-
|
|
4598
|
-
export class StreamGetMaxCentripetalAccelerationResponse extends jspb.Message {
|
|
4599
|
-
getMaxCentripetalAcceleration(): number;
|
|
4600
|
-
setMaxCentripetalAcceleration(value: number): void;
|
|
4601
|
-
|
|
4602
|
-
serializeBinary(): Uint8Array;
|
|
4603
|
-
toObject(includeInstance?: boolean): StreamGetMaxCentripetalAccelerationResponse.AsObject;
|
|
4604
|
-
static toObject(includeInstance: boolean, msg: StreamGetMaxCentripetalAccelerationResponse): StreamGetMaxCentripetalAccelerationResponse.AsObject;
|
|
4605
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4606
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4607
|
-
static serializeBinaryToWriter(message: StreamGetMaxCentripetalAccelerationResponse, writer: jspb.BinaryWriter): void;
|
|
4608
|
-
static deserializeBinary(bytes: Uint8Array): StreamGetMaxCentripetalAccelerationResponse;
|
|
4609
|
-
static deserializeBinaryFromReader(message: StreamGetMaxCentripetalAccelerationResponse, reader: jspb.BinaryReader): StreamGetMaxCentripetalAccelerationResponse;
|
|
4610
|
-
}
|
|
4611
|
-
|
|
4612
|
-
export namespace StreamGetMaxCentripetalAccelerationResponse {
|
|
4613
|
-
export type AsObject = {
|
|
4614
|
-
maxCentripetalAcceleration: number,
|
|
4615
|
-
}
|
|
4616
|
-
}
|
|
4617
|
-
|
|
4618
|
-
export class StreamSetMaxCentripetalAccelerationRequest extends jspb.Message {
|
|
4619
|
-
getInterfaceId(): number;
|
|
4620
|
-
setInterfaceId(value: number): void;
|
|
4621
|
-
|
|
4622
|
-
getDevice(): number;
|
|
4623
|
-
setDevice(value: number): void;
|
|
4624
|
-
|
|
4625
|
-
getStreamId(): number;
|
|
4626
|
-
setStreamId(value: number): void;
|
|
4627
|
-
|
|
4628
|
-
getMaxCentripetalAcceleration(): number;
|
|
4629
|
-
setMaxCentripetalAcceleration(value: number): void;
|
|
4630
|
-
|
|
4631
|
-
getUnit(): string;
|
|
4632
|
-
setUnit(value: string): void;
|
|
4633
|
-
|
|
4634
|
-
serializeBinary(): Uint8Array;
|
|
4635
|
-
toObject(includeInstance?: boolean): StreamSetMaxCentripetalAccelerationRequest.AsObject;
|
|
4636
|
-
static toObject(includeInstance: boolean, msg: StreamSetMaxCentripetalAccelerationRequest): StreamSetMaxCentripetalAccelerationRequest.AsObject;
|
|
4637
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4638
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4639
|
-
static serializeBinaryToWriter(message: StreamSetMaxCentripetalAccelerationRequest, writer: jspb.BinaryWriter): void;
|
|
4640
|
-
static deserializeBinary(bytes: Uint8Array): StreamSetMaxCentripetalAccelerationRequest;
|
|
4641
|
-
static deserializeBinaryFromReader(message: StreamSetMaxCentripetalAccelerationRequest, reader: jspb.BinaryReader): StreamSetMaxCentripetalAccelerationRequest;
|
|
4642
|
-
}
|
|
4643
|
-
|
|
4644
|
-
export namespace StreamSetMaxCentripetalAccelerationRequest {
|
|
4645
|
-
export type AsObject = {
|
|
4646
|
-
interfaceId: number,
|
|
4647
|
-
device: number,
|
|
4648
|
-
streamId: number,
|
|
4649
|
-
maxCentripetalAcceleration: number,
|
|
4650
|
-
unit: string,
|
|
4651
|
-
}
|
|
4652
|
-
}
|
|
4653
|
-
|
|
4654
|
-
export class StreamToStringRequest extends jspb.Message {
|
|
4655
|
-
getInterfaceId(): number;
|
|
4656
|
-
setInterfaceId(value: number): void;
|
|
4657
|
-
|
|
4658
|
-
getDevice(): number;
|
|
4659
|
-
setDevice(value: number): void;
|
|
4660
|
-
|
|
4661
|
-
getStreamId(): number;
|
|
4662
|
-
setStreamId(value: number): void;
|
|
4663
|
-
|
|
4664
|
-
serializeBinary(): Uint8Array;
|
|
4665
|
-
toObject(includeInstance?: boolean): StreamToStringRequest.AsObject;
|
|
4666
|
-
static toObject(includeInstance: boolean, msg: StreamToStringRequest): StreamToStringRequest.AsObject;
|
|
4667
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4668
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4669
|
-
static serializeBinaryToWriter(message: StreamToStringRequest, writer: jspb.BinaryWriter): void;
|
|
4670
|
-
static deserializeBinary(bytes: Uint8Array): StreamToStringRequest;
|
|
4671
|
-
static deserializeBinaryFromReader(message: StreamToStringRequest, reader: jspb.BinaryReader): StreamToStringRequest;
|
|
4672
|
-
}
|
|
4673
|
-
|
|
4674
|
-
export namespace StreamToStringRequest {
|
|
4675
|
-
export type AsObject = {
|
|
4676
|
-
interfaceId: number,
|
|
4677
|
-
device: number,
|
|
4678
|
-
streamId: number,
|
|
4679
|
-
}
|
|
4680
|
-
}
|
|
4681
|
-
|
|
4682
|
-
export class StreamToStringResponse extends jspb.Message {
|
|
4683
|
-
getToStr(): string;
|
|
4684
|
-
setToStr(value: string): void;
|
|
4685
|
-
|
|
4686
|
-
serializeBinary(): Uint8Array;
|
|
4687
|
-
toObject(includeInstance?: boolean): StreamToStringResponse.AsObject;
|
|
4688
|
-
static toObject(includeInstance: boolean, msg: StreamToStringResponse): StreamToStringResponse.AsObject;
|
|
4689
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4690
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4691
|
-
static serializeBinaryToWriter(message: StreamToStringResponse, writer: jspb.BinaryWriter): void;
|
|
4692
|
-
static deserializeBinary(bytes: Uint8Array): StreamToStringResponse;
|
|
4693
|
-
static deserializeBinaryFromReader(message: StreamToStringResponse, reader: jspb.BinaryReader): StreamToStringResponse;
|
|
4694
|
-
}
|
|
4695
|
-
|
|
4696
|
-
export namespace StreamToStringResponse {
|
|
4697
|
-
export type AsObject = {
|
|
4698
|
-
toStr: string,
|
|
3767
|
+
interfaceId: number,
|
|
3768
|
+
device: number,
|
|
3769
|
+
streamId: number,
|
|
3770
|
+
unit: string,
|
|
4699
3771
|
}
|
|
4700
3772
|
}
|
|
4701
3773
|
|
|
4702
|
-
export class
|
|
3774
|
+
export class StreamSetMaxCentripetalAccelerationRequest extends jspb.Message {
|
|
4703
3775
|
getInterfaceId(): number;
|
|
4704
3776
|
setInterfaceId(value: number): void;
|
|
4705
3777
|
|
|
@@ -4709,21 +3781,29 @@ export class StreamDisableRequest extends jspb.Message {
|
|
|
4709
3781
|
getStreamId(): number;
|
|
4710
3782
|
setStreamId(value: number): void;
|
|
4711
3783
|
|
|
3784
|
+
getMaxCentripetalAcceleration(): number;
|
|
3785
|
+
setMaxCentripetalAcceleration(value: number): void;
|
|
3786
|
+
|
|
3787
|
+
getUnit(): string;
|
|
3788
|
+
setUnit(value: string): void;
|
|
3789
|
+
|
|
4712
3790
|
serializeBinary(): Uint8Array;
|
|
4713
|
-
toObject(includeInstance?: boolean):
|
|
4714
|
-
static toObject(includeInstance: boolean, msg:
|
|
3791
|
+
toObject(includeInstance?: boolean): StreamSetMaxCentripetalAccelerationRequest.AsObject;
|
|
3792
|
+
static toObject(includeInstance: boolean, msg: StreamSetMaxCentripetalAccelerationRequest): StreamSetMaxCentripetalAccelerationRequest.AsObject;
|
|
4715
3793
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4716
3794
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4717
|
-
static serializeBinaryToWriter(message:
|
|
4718
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
4719
|
-
static deserializeBinaryFromReader(message:
|
|
3795
|
+
static serializeBinaryToWriter(message: StreamSetMaxCentripetalAccelerationRequest, writer: jspb.BinaryWriter): void;
|
|
3796
|
+
static deserializeBinary(bytes: Uint8Array): StreamSetMaxCentripetalAccelerationRequest;
|
|
3797
|
+
static deserializeBinaryFromReader(message: StreamSetMaxCentripetalAccelerationRequest, reader: jspb.BinaryReader): StreamSetMaxCentripetalAccelerationRequest;
|
|
4720
3798
|
}
|
|
4721
3799
|
|
|
4722
|
-
export namespace
|
|
3800
|
+
export namespace StreamSetMaxCentripetalAccelerationRequest {
|
|
4723
3801
|
export type AsObject = {
|
|
4724
3802
|
interfaceId: number,
|
|
4725
3803
|
device: number,
|
|
4726
3804
|
streamId: number,
|
|
3805
|
+
maxCentripetalAcceleration: number,
|
|
3806
|
+
unit: string,
|
|
4727
3807
|
}
|
|
4728
3808
|
}
|
|
4729
3809
|
|
|
@@ -5065,47 +4145,7 @@ export namespace BinaryMessageCollection {
|
|
|
5065
4145
|
}
|
|
5066
4146
|
}
|
|
5067
4147
|
|
|
5068
|
-
export class
|
|
5069
|
-
getInterfaceId(): number;
|
|
5070
|
-
setInterfaceId(value: number): void;
|
|
5071
|
-
|
|
5072
|
-
serializeBinary(): Uint8Array;
|
|
5073
|
-
toObject(includeInstance?: boolean): BinaryDeviceRenumberRequest.AsObject;
|
|
5074
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceRenumberRequest): BinaryDeviceRenumberRequest.AsObject;
|
|
5075
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5076
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5077
|
-
static serializeBinaryToWriter(message: BinaryDeviceRenumberRequest, writer: jspb.BinaryWriter): void;
|
|
5078
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceRenumberRequest;
|
|
5079
|
-
static deserializeBinaryFromReader(message: BinaryDeviceRenumberRequest, reader: jspb.BinaryReader): BinaryDeviceRenumberRequest;
|
|
5080
|
-
}
|
|
5081
|
-
|
|
5082
|
-
export namespace BinaryDeviceRenumberRequest {
|
|
5083
|
-
export type AsObject = {
|
|
5084
|
-
interfaceId: number,
|
|
5085
|
-
}
|
|
5086
|
-
}
|
|
5087
|
-
|
|
5088
|
-
export class BinaryDeviceRenumberResponse extends jspb.Message {
|
|
5089
|
-
getNumberDevices(): number;
|
|
5090
|
-
setNumberDevices(value: number): void;
|
|
5091
|
-
|
|
5092
|
-
serializeBinary(): Uint8Array;
|
|
5093
|
-
toObject(includeInstance?: boolean): BinaryDeviceRenumberResponse.AsObject;
|
|
5094
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceRenumberResponse): BinaryDeviceRenumberResponse.AsObject;
|
|
5095
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5096
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5097
|
-
static serializeBinaryToWriter(message: BinaryDeviceRenumberResponse, writer: jspb.BinaryWriter): void;
|
|
5098
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceRenumberResponse;
|
|
5099
|
-
static deserializeBinaryFromReader(message: BinaryDeviceRenumberResponse, reader: jspb.BinaryReader): BinaryDeviceRenumberResponse;
|
|
5100
|
-
}
|
|
5101
|
-
|
|
5102
|
-
export namespace BinaryDeviceRenumberResponse {
|
|
5103
|
-
export type AsObject = {
|
|
5104
|
-
numberDevices: number,
|
|
5105
|
-
}
|
|
5106
|
-
}
|
|
5107
|
-
|
|
5108
|
-
export class BinaryDeviceIdentifyRequest extends jspb.Message {
|
|
4148
|
+
export class DeviceEmptyRequest extends jspb.Message {
|
|
5109
4149
|
getInterfaceId(): number;
|
|
5110
4150
|
setInterfaceId(value: number): void;
|
|
5111
4151
|
|
|
@@ -5113,16 +4153,16 @@ export class BinaryDeviceIdentifyRequest extends jspb.Message {
|
|
|
5113
4153
|
setDevice(value: number): void;
|
|
5114
4154
|
|
|
5115
4155
|
serializeBinary(): Uint8Array;
|
|
5116
|
-
toObject(includeInstance?: boolean):
|
|
5117
|
-
static toObject(includeInstance: boolean, msg:
|
|
4156
|
+
toObject(includeInstance?: boolean): DeviceEmptyRequest.AsObject;
|
|
4157
|
+
static toObject(includeInstance: boolean, msg: DeviceEmptyRequest): DeviceEmptyRequest.AsObject;
|
|
5118
4158
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5119
4159
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5120
|
-
static serializeBinaryToWriter(message:
|
|
5121
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5122
|
-
static deserializeBinaryFromReader(message:
|
|
4160
|
+
static serializeBinaryToWriter(message: DeviceEmptyRequest, writer: jspb.BinaryWriter): void;
|
|
4161
|
+
static deserializeBinary(bytes: Uint8Array): DeviceEmptyRequest;
|
|
4162
|
+
static deserializeBinaryFromReader(message: DeviceEmptyRequest, reader: jspb.BinaryReader): DeviceEmptyRequest;
|
|
5123
4163
|
}
|
|
5124
4164
|
|
|
5125
|
-
export namespace
|
|
4165
|
+
export namespace DeviceEmptyRequest {
|
|
5126
4166
|
export type AsObject = {
|
|
5127
4167
|
interfaceId: number,
|
|
5128
4168
|
device: number,
|
|
@@ -5185,30 +4225,6 @@ export namespace BinaryDeviceIdentity {
|
|
|
5185
4225
|
}
|
|
5186
4226
|
}
|
|
5187
4227
|
|
|
5188
|
-
export class BinaryDeviceGetIdentityRequest extends jspb.Message {
|
|
5189
|
-
getInterfaceId(): number;
|
|
5190
|
-
setInterfaceId(value: number): void;
|
|
5191
|
-
|
|
5192
|
-
getDevice(): number;
|
|
5193
|
-
setDevice(value: number): void;
|
|
5194
|
-
|
|
5195
|
-
serializeBinary(): Uint8Array;
|
|
5196
|
-
toObject(includeInstance?: boolean): BinaryDeviceGetIdentityRequest.AsObject;
|
|
5197
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceGetIdentityRequest): BinaryDeviceGetIdentityRequest.AsObject;
|
|
5198
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5199
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5200
|
-
static serializeBinaryToWriter(message: BinaryDeviceGetIdentityRequest, writer: jspb.BinaryWriter): void;
|
|
5201
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceGetIdentityRequest;
|
|
5202
|
-
static deserializeBinaryFromReader(message: BinaryDeviceGetIdentityRequest, reader: jspb.BinaryReader): BinaryDeviceGetIdentityRequest;
|
|
5203
|
-
}
|
|
5204
|
-
|
|
5205
|
-
export namespace BinaryDeviceGetIdentityRequest {
|
|
5206
|
-
export type AsObject = {
|
|
5207
|
-
interfaceId: number,
|
|
5208
|
-
device: number,
|
|
5209
|
-
}
|
|
5210
|
-
}
|
|
5211
|
-
|
|
5212
4228
|
export class BinaryDeviceGetIdentityResponse extends jspb.Message {
|
|
5213
4229
|
hasIdentity(): boolean;
|
|
5214
4230
|
clearIdentity(): void;
|
|
@@ -5231,50 +4247,6 @@ export namespace BinaryDeviceGetIdentityResponse {
|
|
|
5231
4247
|
}
|
|
5232
4248
|
}
|
|
5233
4249
|
|
|
5234
|
-
export class BinaryDeviceGetIsIdentifiedRequest extends jspb.Message {
|
|
5235
|
-
getInterfaceId(): number;
|
|
5236
|
-
setInterfaceId(value: number): void;
|
|
5237
|
-
|
|
5238
|
-
getDevice(): number;
|
|
5239
|
-
setDevice(value: number): void;
|
|
5240
|
-
|
|
5241
|
-
serializeBinary(): Uint8Array;
|
|
5242
|
-
toObject(includeInstance?: boolean): BinaryDeviceGetIsIdentifiedRequest.AsObject;
|
|
5243
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceGetIsIdentifiedRequest): BinaryDeviceGetIsIdentifiedRequest.AsObject;
|
|
5244
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5245
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5246
|
-
static serializeBinaryToWriter(message: BinaryDeviceGetIsIdentifiedRequest, writer: jspb.BinaryWriter): void;
|
|
5247
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceGetIsIdentifiedRequest;
|
|
5248
|
-
static deserializeBinaryFromReader(message: BinaryDeviceGetIsIdentifiedRequest, reader: jspb.BinaryReader): BinaryDeviceGetIsIdentifiedRequest;
|
|
5249
|
-
}
|
|
5250
|
-
|
|
5251
|
-
export namespace BinaryDeviceGetIsIdentifiedRequest {
|
|
5252
|
-
export type AsObject = {
|
|
5253
|
-
interfaceId: number,
|
|
5254
|
-
device: number,
|
|
5255
|
-
}
|
|
5256
|
-
}
|
|
5257
|
-
|
|
5258
|
-
export class BinaryDeviceGetIsIdentifiedResponse extends jspb.Message {
|
|
5259
|
-
getIsIdentified(): boolean;
|
|
5260
|
-
setIsIdentified(value: boolean): void;
|
|
5261
|
-
|
|
5262
|
-
serializeBinary(): Uint8Array;
|
|
5263
|
-
toObject(includeInstance?: boolean): BinaryDeviceGetIsIdentifiedResponse.AsObject;
|
|
5264
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceGetIsIdentifiedResponse): BinaryDeviceGetIsIdentifiedResponse.AsObject;
|
|
5265
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5266
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5267
|
-
static serializeBinaryToWriter(message: BinaryDeviceGetIsIdentifiedResponse, writer: jspb.BinaryWriter): void;
|
|
5268
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceGetIsIdentifiedResponse;
|
|
5269
|
-
static deserializeBinaryFromReader(message: BinaryDeviceGetIsIdentifiedResponse, reader: jspb.BinaryReader): BinaryDeviceGetIsIdentifiedResponse;
|
|
5270
|
-
}
|
|
5271
|
-
|
|
5272
|
-
export namespace BinaryDeviceGetIsIdentifiedResponse {
|
|
5273
|
-
export type AsObject = {
|
|
5274
|
-
isIdentified: boolean,
|
|
5275
|
-
}
|
|
5276
|
-
}
|
|
5277
|
-
|
|
5278
4250
|
export class BinaryGenericWithUnitsRequest extends jspb.Message {
|
|
5279
4251
|
getInterfaceId(): number;
|
|
5280
4252
|
setInterfaceId(value: number): void;
|
|
@@ -5319,26 +4291,6 @@ export namespace BinaryGenericWithUnitsRequest {
|
|
|
5319
4291
|
}
|
|
5320
4292
|
}
|
|
5321
4293
|
|
|
5322
|
-
export class BinaryGenericWithUnitsResponse extends jspb.Message {
|
|
5323
|
-
getData(): number;
|
|
5324
|
-
setData(value: number): void;
|
|
5325
|
-
|
|
5326
|
-
serializeBinary(): Uint8Array;
|
|
5327
|
-
toObject(includeInstance?: boolean): BinaryGenericWithUnitsResponse.AsObject;
|
|
5328
|
-
static toObject(includeInstance: boolean, msg: BinaryGenericWithUnitsResponse): BinaryGenericWithUnitsResponse.AsObject;
|
|
5329
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5330
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5331
|
-
static serializeBinaryToWriter(message: BinaryGenericWithUnitsResponse, writer: jspb.BinaryWriter): void;
|
|
5332
|
-
static deserializeBinary(bytes: Uint8Array): BinaryGenericWithUnitsResponse;
|
|
5333
|
-
static deserializeBinaryFromReader(message: BinaryGenericWithUnitsResponse, reader: jspb.BinaryReader): BinaryGenericWithUnitsResponse;
|
|
5334
|
-
}
|
|
5335
|
-
|
|
5336
|
-
export namespace BinaryGenericWithUnitsResponse {
|
|
5337
|
-
export type AsObject = {
|
|
5338
|
-
data: number,
|
|
5339
|
-
}
|
|
5340
|
-
}
|
|
5341
|
-
|
|
5342
4294
|
export class BinaryDeviceHomeRequest extends jspb.Message {
|
|
5343
4295
|
getInterfaceId(): number;
|
|
5344
4296
|
setInterfaceId(value: number): void;
|
|
@@ -5371,26 +4323,6 @@ export namespace BinaryDeviceHomeRequest {
|
|
|
5371
4323
|
}
|
|
5372
4324
|
}
|
|
5373
4325
|
|
|
5374
|
-
export class BinaryDeviceMovementResponse extends jspb.Message {
|
|
5375
|
-
getData(): number;
|
|
5376
|
-
setData(value: number): void;
|
|
5377
|
-
|
|
5378
|
-
serializeBinary(): Uint8Array;
|
|
5379
|
-
toObject(includeInstance?: boolean): BinaryDeviceMovementResponse.AsObject;
|
|
5380
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceMovementResponse): BinaryDeviceMovementResponse.AsObject;
|
|
5381
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5382
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5383
|
-
static serializeBinaryToWriter(message: BinaryDeviceMovementResponse, writer: jspb.BinaryWriter): void;
|
|
5384
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceMovementResponse;
|
|
5385
|
-
static deserializeBinaryFromReader(message: BinaryDeviceMovementResponse, reader: jspb.BinaryReader): BinaryDeviceMovementResponse;
|
|
5386
|
-
}
|
|
5387
|
-
|
|
5388
|
-
export namespace BinaryDeviceMovementResponse {
|
|
5389
|
-
export type AsObject = {
|
|
5390
|
-
data: number,
|
|
5391
|
-
}
|
|
5392
|
-
}
|
|
5393
|
-
|
|
5394
4326
|
export class BinaryDeviceMoveRequest extends jspb.Message {
|
|
5395
4327
|
getInterfaceId(): number;
|
|
5396
4328
|
setInterfaceId(value: number): void;
|
|
@@ -5469,74 +4401,6 @@ export namespace BinaryDeviceStopRequest {
|
|
|
5469
4401
|
}
|
|
5470
4402
|
}
|
|
5471
4403
|
|
|
5472
|
-
export class BinaryDeviceWaitUntilIdleRequest extends jspb.Message {
|
|
5473
|
-
getInterfaceId(): number;
|
|
5474
|
-
setInterfaceId(value: number): void;
|
|
5475
|
-
|
|
5476
|
-
getDevice(): number;
|
|
5477
|
-
setDevice(value: number): void;
|
|
5478
|
-
|
|
5479
|
-
serializeBinary(): Uint8Array;
|
|
5480
|
-
toObject(includeInstance?: boolean): BinaryDeviceWaitUntilIdleRequest.AsObject;
|
|
5481
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceWaitUntilIdleRequest): BinaryDeviceWaitUntilIdleRequest.AsObject;
|
|
5482
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5483
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5484
|
-
static serializeBinaryToWriter(message: BinaryDeviceWaitUntilIdleRequest, writer: jspb.BinaryWriter): void;
|
|
5485
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceWaitUntilIdleRequest;
|
|
5486
|
-
static deserializeBinaryFromReader(message: BinaryDeviceWaitUntilIdleRequest, reader: jspb.BinaryReader): BinaryDeviceWaitUntilIdleRequest;
|
|
5487
|
-
}
|
|
5488
|
-
|
|
5489
|
-
export namespace BinaryDeviceWaitUntilIdleRequest {
|
|
5490
|
-
export type AsObject = {
|
|
5491
|
-
interfaceId: number,
|
|
5492
|
-
device: number,
|
|
5493
|
-
}
|
|
5494
|
-
}
|
|
5495
|
-
|
|
5496
|
-
export class BinaryDeviceIsBusyRequest extends jspb.Message {
|
|
5497
|
-
getInterfaceId(): number;
|
|
5498
|
-
setInterfaceId(value: number): void;
|
|
5499
|
-
|
|
5500
|
-
getDevice(): number;
|
|
5501
|
-
setDevice(value: number): void;
|
|
5502
|
-
|
|
5503
|
-
serializeBinary(): Uint8Array;
|
|
5504
|
-
toObject(includeInstance?: boolean): BinaryDeviceIsBusyRequest.AsObject;
|
|
5505
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceIsBusyRequest): BinaryDeviceIsBusyRequest.AsObject;
|
|
5506
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5507
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5508
|
-
static serializeBinaryToWriter(message: BinaryDeviceIsBusyRequest, writer: jspb.BinaryWriter): void;
|
|
5509
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceIsBusyRequest;
|
|
5510
|
-
static deserializeBinaryFromReader(message: BinaryDeviceIsBusyRequest, reader: jspb.BinaryReader): BinaryDeviceIsBusyRequest;
|
|
5511
|
-
}
|
|
5512
|
-
|
|
5513
|
-
export namespace BinaryDeviceIsBusyRequest {
|
|
5514
|
-
export type AsObject = {
|
|
5515
|
-
interfaceId: number,
|
|
5516
|
-
device: number,
|
|
5517
|
-
}
|
|
5518
|
-
}
|
|
5519
|
-
|
|
5520
|
-
export class BinaryDeviceIsBusyResponse extends jspb.Message {
|
|
5521
|
-
getIsBusy(): boolean;
|
|
5522
|
-
setIsBusy(value: boolean): void;
|
|
5523
|
-
|
|
5524
|
-
serializeBinary(): Uint8Array;
|
|
5525
|
-
toObject(includeInstance?: boolean): BinaryDeviceIsBusyResponse.AsObject;
|
|
5526
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceIsBusyResponse): BinaryDeviceIsBusyResponse.AsObject;
|
|
5527
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5528
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5529
|
-
static serializeBinaryToWriter(message: BinaryDeviceIsBusyResponse, writer: jspb.BinaryWriter): void;
|
|
5530
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceIsBusyResponse;
|
|
5531
|
-
static deserializeBinaryFromReader(message: BinaryDeviceIsBusyResponse, reader: jspb.BinaryReader): BinaryDeviceIsBusyResponse;
|
|
5532
|
-
}
|
|
5533
|
-
|
|
5534
|
-
export namespace BinaryDeviceIsBusyResponse {
|
|
5535
|
-
export type AsObject = {
|
|
5536
|
-
isBusy: boolean,
|
|
5537
|
-
}
|
|
5538
|
-
}
|
|
5539
|
-
|
|
5540
4404
|
export class BinaryDeviceDetectRequest extends jspb.Message {
|
|
5541
4405
|
getInterfaceId(): number;
|
|
5542
4406
|
setInterfaceId(value: number): void;
|
|
@@ -5615,26 +4479,6 @@ export namespace BinaryDeviceGetSettingRequest {
|
|
|
5615
4479
|
}
|
|
5616
4480
|
}
|
|
5617
4481
|
|
|
5618
|
-
export class BinaryDeviceGetSettingResponse extends jspb.Message {
|
|
5619
|
-
getValue(): number;
|
|
5620
|
-
setValue(value: number): void;
|
|
5621
|
-
|
|
5622
|
-
serializeBinary(): Uint8Array;
|
|
5623
|
-
toObject(includeInstance?: boolean): BinaryDeviceGetSettingResponse.AsObject;
|
|
5624
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceGetSettingResponse): BinaryDeviceGetSettingResponse.AsObject;
|
|
5625
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5626
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5627
|
-
static serializeBinaryToWriter(message: BinaryDeviceGetSettingResponse, writer: jspb.BinaryWriter): void;
|
|
5628
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceGetSettingResponse;
|
|
5629
|
-
static deserializeBinaryFromReader(message: BinaryDeviceGetSettingResponse, reader: jspb.BinaryReader): BinaryDeviceGetSettingResponse;
|
|
5630
|
-
}
|
|
5631
|
-
|
|
5632
|
-
export namespace BinaryDeviceGetSettingResponse {
|
|
5633
|
-
export type AsObject = {
|
|
5634
|
-
value: number,
|
|
5635
|
-
}
|
|
5636
|
-
}
|
|
5637
|
-
|
|
5638
4482
|
export class BinaryDeviceSetSettingRequest extends jspb.Message {
|
|
5639
4483
|
getInterfaceId(): number;
|
|
5640
4484
|
setInterfaceId(value: number): void;
|
|
@@ -5671,50 +4515,6 @@ export namespace BinaryDeviceSetSettingRequest {
|
|
|
5671
4515
|
}
|
|
5672
4516
|
}
|
|
5673
4517
|
|
|
5674
|
-
export class BinaryDeviceParkRequest extends jspb.Message {
|
|
5675
|
-
getInterfaceId(): number;
|
|
5676
|
-
setInterfaceId(value: number): void;
|
|
5677
|
-
|
|
5678
|
-
getDevice(): number;
|
|
5679
|
-
setDevice(value: number): void;
|
|
5680
|
-
|
|
5681
|
-
serializeBinary(): Uint8Array;
|
|
5682
|
-
toObject(includeInstance?: boolean): BinaryDeviceParkRequest.AsObject;
|
|
5683
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceParkRequest): BinaryDeviceParkRequest.AsObject;
|
|
5684
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5685
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5686
|
-
static serializeBinaryToWriter(message: BinaryDeviceParkRequest, writer: jspb.BinaryWriter): void;
|
|
5687
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceParkRequest;
|
|
5688
|
-
static deserializeBinaryFromReader(message: BinaryDeviceParkRequest, reader: jspb.BinaryReader): BinaryDeviceParkRequest;
|
|
5689
|
-
}
|
|
5690
|
-
|
|
5691
|
-
export namespace BinaryDeviceParkRequest {
|
|
5692
|
-
export type AsObject = {
|
|
5693
|
-
interfaceId: number,
|
|
5694
|
-
device: number,
|
|
5695
|
-
}
|
|
5696
|
-
}
|
|
5697
|
-
|
|
5698
|
-
export class BinaryDeviceParkResponse extends jspb.Message {
|
|
5699
|
-
getIsParked(): boolean;
|
|
5700
|
-
setIsParked(value: boolean): void;
|
|
5701
|
-
|
|
5702
|
-
serializeBinary(): Uint8Array;
|
|
5703
|
-
toObject(includeInstance?: boolean): BinaryDeviceParkResponse.AsObject;
|
|
5704
|
-
static toObject(includeInstance: boolean, msg: BinaryDeviceParkResponse): BinaryDeviceParkResponse.AsObject;
|
|
5705
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5706
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5707
|
-
static serializeBinaryToWriter(message: BinaryDeviceParkResponse, writer: jspb.BinaryWriter): void;
|
|
5708
|
-
static deserializeBinary(bytes: Uint8Array): BinaryDeviceParkResponse;
|
|
5709
|
-
static deserializeBinaryFromReader(message: BinaryDeviceParkResponse, reader: jspb.BinaryReader): BinaryDeviceParkResponse;
|
|
5710
|
-
}
|
|
5711
|
-
|
|
5712
|
-
export namespace BinaryDeviceParkResponse {
|
|
5713
|
-
export type AsObject = {
|
|
5714
|
-
isParked: boolean,
|
|
5715
|
-
}
|
|
5716
|
-
}
|
|
5717
|
-
|
|
5718
4518
|
export class CustomInterfaceReadRequest extends jspb.Message {
|
|
5719
4519
|
getTransportId(): number;
|
|
5720
4520
|
setTransportId(value: number): void;
|
|
@@ -5735,26 +4535,6 @@ export namespace CustomInterfaceReadRequest {
|
|
|
5735
4535
|
}
|
|
5736
4536
|
}
|
|
5737
4537
|
|
|
5738
|
-
export class CustomInterfaceReadResponse extends jspb.Message {
|
|
5739
|
-
getMessage(): string;
|
|
5740
|
-
setMessage(value: string): void;
|
|
5741
|
-
|
|
5742
|
-
serializeBinary(): Uint8Array;
|
|
5743
|
-
toObject(includeInstance?: boolean): CustomInterfaceReadResponse.AsObject;
|
|
5744
|
-
static toObject(includeInstance: boolean, msg: CustomInterfaceReadResponse): CustomInterfaceReadResponse.AsObject;
|
|
5745
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5746
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5747
|
-
static serializeBinaryToWriter(message: CustomInterfaceReadResponse, writer: jspb.BinaryWriter): void;
|
|
5748
|
-
static deserializeBinary(bytes: Uint8Array): CustomInterfaceReadResponse;
|
|
5749
|
-
static deserializeBinaryFromReader(message: CustomInterfaceReadResponse, reader: jspb.BinaryReader): CustomInterfaceReadResponse;
|
|
5750
|
-
}
|
|
5751
|
-
|
|
5752
|
-
export namespace CustomInterfaceReadResponse {
|
|
5753
|
-
export type AsObject = {
|
|
5754
|
-
message: string,
|
|
5755
|
-
}
|
|
5756
|
-
}
|
|
5757
|
-
|
|
5758
4538
|
export class CustomInterfaceWriteRequest extends jspb.Message {
|
|
5759
4539
|
getTransportId(): number;
|
|
5760
4540
|
setTransportId(value: number): void;
|
|
@@ -5788,86 +4568,38 @@ export class CustomInterfaceOpenResponse extends jspb.Message {
|
|
|
5788
4568
|
static toObject(includeInstance: boolean, msg: CustomInterfaceOpenResponse): CustomInterfaceOpenResponse.AsObject;
|
|
5789
4569
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5790
4570
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5791
|
-
static serializeBinaryToWriter(message: CustomInterfaceOpenResponse, writer: jspb.BinaryWriter): void;
|
|
5792
|
-
static deserializeBinary(bytes: Uint8Array): CustomInterfaceOpenResponse;
|
|
5793
|
-
static deserializeBinaryFromReader(message: CustomInterfaceOpenResponse, reader: jspb.BinaryReader): CustomInterfaceOpenResponse;
|
|
5794
|
-
}
|
|
5795
|
-
|
|
5796
|
-
export namespace CustomInterfaceOpenResponse {
|
|
5797
|
-
export type AsObject = {
|
|
5798
|
-
transportId: number,
|
|
5799
|
-
}
|
|
5800
|
-
}
|
|
5801
|
-
|
|
5802
|
-
export class CustomInterfaceCloseRequest extends jspb.Message {
|
|
5803
|
-
getTransportId(): number;
|
|
5804
|
-
setTransportId(value: number): void;
|
|
5805
|
-
|
|
5806
|
-
getErrorMessage(): string;
|
|
5807
|
-
setErrorMessage(value: string): void;
|
|
5808
|
-
|
|
5809
|
-
serializeBinary(): Uint8Array;
|
|
5810
|
-
toObject(includeInstance?: boolean): CustomInterfaceCloseRequest.AsObject;
|
|
5811
|
-
static toObject(includeInstance: boolean, msg: CustomInterfaceCloseRequest): CustomInterfaceCloseRequest.AsObject;
|
|
5812
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5813
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5814
|
-
static serializeBinaryToWriter(message: CustomInterfaceCloseRequest, writer: jspb.BinaryWriter): void;
|
|
5815
|
-
static deserializeBinary(bytes: Uint8Array): CustomInterfaceCloseRequest;
|
|
5816
|
-
static deserializeBinaryFromReader(message: CustomInterfaceCloseRequest, reader: jspb.BinaryReader): CustomInterfaceCloseRequest;
|
|
5817
|
-
}
|
|
5818
|
-
|
|
5819
|
-
export namespace CustomInterfaceCloseRequest {
|
|
5820
|
-
export type AsObject = {
|
|
5821
|
-
transportId: number,
|
|
5822
|
-
errorMessage: string,
|
|
5823
|
-
}
|
|
5824
|
-
}
|
|
5825
|
-
|
|
5826
|
-
export class GetStateRequest extends jspb.Message {
|
|
5827
|
-
getInterfaceId(): number;
|
|
5828
|
-
setInterfaceId(value: number): void;
|
|
5829
|
-
|
|
5830
|
-
getDevice(): number;
|
|
5831
|
-
setDevice(value: number): void;
|
|
5832
|
-
|
|
5833
|
-
getAxis(): number;
|
|
5834
|
-
setAxis(value: number): void;
|
|
5835
|
-
|
|
5836
|
-
serializeBinary(): Uint8Array;
|
|
5837
|
-
toObject(includeInstance?: boolean): GetStateRequest.AsObject;
|
|
5838
|
-
static toObject(includeInstance: boolean, msg: GetStateRequest): GetStateRequest.AsObject;
|
|
5839
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5840
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5841
|
-
static serializeBinaryToWriter(message: GetStateRequest, writer: jspb.BinaryWriter): void;
|
|
5842
|
-
static deserializeBinary(bytes: Uint8Array): GetStateRequest;
|
|
5843
|
-
static deserializeBinaryFromReader(message: GetStateRequest, reader: jspb.BinaryReader): GetStateRequest;
|
|
4571
|
+
static serializeBinaryToWriter(message: CustomInterfaceOpenResponse, writer: jspb.BinaryWriter): void;
|
|
4572
|
+
static deserializeBinary(bytes: Uint8Array): CustomInterfaceOpenResponse;
|
|
4573
|
+
static deserializeBinaryFromReader(message: CustomInterfaceOpenResponse, reader: jspb.BinaryReader): CustomInterfaceOpenResponse;
|
|
5844
4574
|
}
|
|
5845
4575
|
|
|
5846
|
-
export namespace
|
|
4576
|
+
export namespace CustomInterfaceOpenResponse {
|
|
5847
4577
|
export type AsObject = {
|
|
5848
|
-
|
|
5849
|
-
device: number,
|
|
5850
|
-
axis: number,
|
|
4578
|
+
transportId: number,
|
|
5851
4579
|
}
|
|
5852
4580
|
}
|
|
5853
4581
|
|
|
5854
|
-
export class
|
|
5855
|
-
|
|
5856
|
-
|
|
4582
|
+
export class CustomInterfaceCloseRequest extends jspb.Message {
|
|
4583
|
+
getTransportId(): number;
|
|
4584
|
+
setTransportId(value: number): void;
|
|
4585
|
+
|
|
4586
|
+
getErrorMessage(): string;
|
|
4587
|
+
setErrorMessage(value: string): void;
|
|
5857
4588
|
|
|
5858
4589
|
serializeBinary(): Uint8Array;
|
|
5859
|
-
toObject(includeInstance?: boolean):
|
|
5860
|
-
static toObject(includeInstance: boolean, msg:
|
|
4590
|
+
toObject(includeInstance?: boolean): CustomInterfaceCloseRequest.AsObject;
|
|
4591
|
+
static toObject(includeInstance: boolean, msg: CustomInterfaceCloseRequest): CustomInterfaceCloseRequest.AsObject;
|
|
5861
4592
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5862
4593
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5863
|
-
static serializeBinaryToWriter(message:
|
|
5864
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
5865
|
-
static deserializeBinaryFromReader(message:
|
|
4594
|
+
static serializeBinaryToWriter(message: CustomInterfaceCloseRequest, writer: jspb.BinaryWriter): void;
|
|
4595
|
+
static deserializeBinary(bytes: Uint8Array): CustomInterfaceCloseRequest;
|
|
4596
|
+
static deserializeBinaryFromReader(message: CustomInterfaceCloseRequest, reader: jspb.BinaryReader): CustomInterfaceCloseRequest;
|
|
5866
4597
|
}
|
|
5867
4598
|
|
|
5868
|
-
export namespace
|
|
4599
|
+
export namespace CustomInterfaceCloseRequest {
|
|
5869
4600
|
export type AsObject = {
|
|
5870
|
-
|
|
4601
|
+
transportId: number,
|
|
4602
|
+
errorMessage: string,
|
|
5871
4603
|
}
|
|
5872
4604
|
}
|
|
5873
4605
|
|
|
@@ -5884,9 +4616,6 @@ export class CanSetStateRequest extends jspb.Message {
|
|
|
5884
4616
|
getState(): string;
|
|
5885
4617
|
setState(value: string): void;
|
|
5886
4618
|
|
|
5887
|
-
getDeviceOnly(): boolean;
|
|
5888
|
-
setDeviceOnly(value: boolean): void;
|
|
5889
|
-
|
|
5890
4619
|
serializeBinary(): Uint8Array;
|
|
5891
4620
|
toObject(includeInstance?: boolean): CanSetStateRequest.AsObject;
|
|
5892
4621
|
static toObject(includeInstance: boolean, msg: CanSetStateRequest): CanSetStateRequest.AsObject;
|
|
@@ -5903,7 +4632,6 @@ export namespace CanSetStateRequest {
|
|
|
5903
4632
|
device: number,
|
|
5904
4633
|
axis: number,
|
|
5905
4634
|
state: string,
|
|
5906
|
-
deviceOnly: boolean,
|
|
5907
4635
|
}
|
|
5908
4636
|
}
|
|
5909
4637
|
|
|
@@ -6113,54 +4841,6 @@ export namespace SetServoTuningRequest {
|
|
|
6113
4841
|
}
|
|
6114
4842
|
}
|
|
6115
4843
|
|
|
6116
|
-
export class GetStartupParamset extends jspb.Message {
|
|
6117
|
-
getInterfaceId(): number;
|
|
6118
|
-
setInterfaceId(value: number): void;
|
|
6119
|
-
|
|
6120
|
-
getDevice(): number;
|
|
6121
|
-
setDevice(value: number): void;
|
|
6122
|
-
|
|
6123
|
-
getAxis(): number;
|
|
6124
|
-
setAxis(value: number): void;
|
|
6125
|
-
|
|
6126
|
-
serializeBinary(): Uint8Array;
|
|
6127
|
-
toObject(includeInstance?: boolean): GetStartupParamset.AsObject;
|
|
6128
|
-
static toObject(includeInstance: boolean, msg: GetStartupParamset): GetStartupParamset.AsObject;
|
|
6129
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6130
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6131
|
-
static serializeBinaryToWriter(message: GetStartupParamset, writer: jspb.BinaryWriter): void;
|
|
6132
|
-
static deserializeBinary(bytes: Uint8Array): GetStartupParamset;
|
|
6133
|
-
static deserializeBinaryFromReader(message: GetStartupParamset, reader: jspb.BinaryReader): GetStartupParamset;
|
|
6134
|
-
}
|
|
6135
|
-
|
|
6136
|
-
export namespace GetStartupParamset {
|
|
6137
|
-
export type AsObject = {
|
|
6138
|
-
interfaceId: number,
|
|
6139
|
-
device: number,
|
|
6140
|
-
axis: number,
|
|
6141
|
-
}
|
|
6142
|
-
}
|
|
6143
|
-
|
|
6144
|
-
export class StartupParamset extends jspb.Message {
|
|
6145
|
-
getParamset(): number;
|
|
6146
|
-
setParamset(value: number): void;
|
|
6147
|
-
|
|
6148
|
-
serializeBinary(): Uint8Array;
|
|
6149
|
-
toObject(includeInstance?: boolean): StartupParamset.AsObject;
|
|
6150
|
-
static toObject(includeInstance: boolean, msg: StartupParamset): StartupParamset.AsObject;
|
|
6151
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6152
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6153
|
-
static serializeBinaryToWriter(message: StartupParamset, writer: jspb.BinaryWriter): void;
|
|
6154
|
-
static deserializeBinary(bytes: Uint8Array): StartupParamset;
|
|
6155
|
-
static deserializeBinaryFromReader(message: StartupParamset, reader: jspb.BinaryReader): StartupParamset;
|
|
6156
|
-
}
|
|
6157
|
-
|
|
6158
|
-
export namespace StartupParamset {
|
|
6159
|
-
export type AsObject = {
|
|
6160
|
-
paramset: number,
|
|
6161
|
-
}
|
|
6162
|
-
}
|
|
6163
|
-
|
|
6164
4844
|
export class LoadParamset extends jspb.Message {
|
|
6165
4845
|
getInterfaceId(): number;
|
|
6166
4846
|
setInterfaceId(value: number): void;
|
|
@@ -6285,34 +4965,6 @@ export namespace PidTuning {
|
|
|
6285
4965
|
}
|
|
6286
4966
|
}
|
|
6287
4967
|
|
|
6288
|
-
export class GetSimpleTuningParamListRequest extends jspb.Message {
|
|
6289
|
-
getInterfaceId(): number;
|
|
6290
|
-
setInterfaceId(value: number): void;
|
|
6291
|
-
|
|
6292
|
-
getDevice(): number;
|
|
6293
|
-
setDevice(value: number): void;
|
|
6294
|
-
|
|
6295
|
-
getAxis(): number;
|
|
6296
|
-
setAxis(value: number): void;
|
|
6297
|
-
|
|
6298
|
-
serializeBinary(): Uint8Array;
|
|
6299
|
-
toObject(includeInstance?: boolean): GetSimpleTuningParamListRequest.AsObject;
|
|
6300
|
-
static toObject(includeInstance: boolean, msg: GetSimpleTuningParamListRequest): GetSimpleTuningParamListRequest.AsObject;
|
|
6301
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6302
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6303
|
-
static serializeBinaryToWriter(message: GetSimpleTuningParamListRequest, writer: jspb.BinaryWriter): void;
|
|
6304
|
-
static deserializeBinary(bytes: Uint8Array): GetSimpleTuningParamListRequest;
|
|
6305
|
-
static deserializeBinaryFromReader(message: GetSimpleTuningParamListRequest, reader: jspb.BinaryReader): GetSimpleTuningParamListRequest;
|
|
6306
|
-
}
|
|
6307
|
-
|
|
6308
|
-
export namespace GetSimpleTuningParamListRequest {
|
|
6309
|
-
export type AsObject = {
|
|
6310
|
-
interfaceId: number,
|
|
6311
|
-
device: number,
|
|
6312
|
-
axis: number,
|
|
6313
|
-
}
|
|
6314
|
-
}
|
|
6315
|
-
|
|
6316
4968
|
export class SetSimpleTuning extends jspb.Message {
|
|
6317
4969
|
getInterfaceId(): number;
|
|
6318
4970
|
setInterfaceId(value: number): void;
|
|
@@ -6915,26 +5567,6 @@ export namespace TranslatorGetAxisPositionRequest {
|
|
|
6915
5567
|
}
|
|
6916
5568
|
}
|
|
6917
5569
|
|
|
6918
|
-
export class TranslatorGetAxisPositionResponse extends jspb.Message {
|
|
6919
|
-
getValue(): number;
|
|
6920
|
-
setValue(value: number): void;
|
|
6921
|
-
|
|
6922
|
-
serializeBinary(): Uint8Array;
|
|
6923
|
-
toObject(includeInstance?: boolean): TranslatorGetAxisPositionResponse.AsObject;
|
|
6924
|
-
static toObject(includeInstance: boolean, msg: TranslatorGetAxisPositionResponse): TranslatorGetAxisPositionResponse.AsObject;
|
|
6925
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6926
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6927
|
-
static serializeBinaryToWriter(message: TranslatorGetAxisPositionResponse, writer: jspb.BinaryWriter): void;
|
|
6928
|
-
static deserializeBinary(bytes: Uint8Array): TranslatorGetAxisPositionResponse;
|
|
6929
|
-
static deserializeBinaryFromReader(message: TranslatorGetAxisPositionResponse, reader: jspb.BinaryReader): TranslatorGetAxisPositionResponse;
|
|
6930
|
-
}
|
|
6931
|
-
|
|
6932
|
-
export namespace TranslatorGetAxisPositionResponse {
|
|
6933
|
-
export type AsObject = {
|
|
6934
|
-
value: number,
|
|
6935
|
-
}
|
|
6936
|
-
}
|
|
6937
|
-
|
|
6938
5570
|
export class TranslatorGetAxisOffsetRequest extends jspb.Message {
|
|
6939
5571
|
getTranslatorId(): number;
|
|
6940
5572
|
setTranslatorId(value: number): void;
|
|
@@ -6967,26 +5599,6 @@ export namespace TranslatorGetAxisOffsetRequest {
|
|
|
6967
5599
|
}
|
|
6968
5600
|
}
|
|
6969
5601
|
|
|
6970
|
-
export class TranslatorGetCurrentCoordinateSystemResponse extends jspb.Message {
|
|
6971
|
-
getValue(): string;
|
|
6972
|
-
setValue(value: string): void;
|
|
6973
|
-
|
|
6974
|
-
serializeBinary(): Uint8Array;
|
|
6975
|
-
toObject(includeInstance?: boolean): TranslatorGetCurrentCoordinateSystemResponse.AsObject;
|
|
6976
|
-
static toObject(includeInstance: boolean, msg: TranslatorGetCurrentCoordinateSystemResponse): TranslatorGetCurrentCoordinateSystemResponse.AsObject;
|
|
6977
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6978
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6979
|
-
static serializeBinaryToWriter(message: TranslatorGetCurrentCoordinateSystemResponse, writer: jspb.BinaryWriter): void;
|
|
6980
|
-
static deserializeBinary(bytes: Uint8Array): TranslatorGetCurrentCoordinateSystemResponse;
|
|
6981
|
-
static deserializeBinaryFromReader(message: TranslatorGetCurrentCoordinateSystemResponse, reader: jspb.BinaryReader): TranslatorGetCurrentCoordinateSystemResponse;
|
|
6982
|
-
}
|
|
6983
|
-
|
|
6984
|
-
export namespace TranslatorGetCurrentCoordinateSystemResponse {
|
|
6985
|
-
export type AsObject = {
|
|
6986
|
-
value: string,
|
|
6987
|
-
}
|
|
6988
|
-
}
|
|
6989
|
-
|
|
6990
5602
|
export class TranslatorSetFeedRateOverrideRequest extends jspb.Message {
|
|
6991
5603
|
getTranslatorId(): number;
|
|
6992
5604
|
setTranslatorId(value: number): void;
|
|
@@ -7011,6 +5623,218 @@ export namespace TranslatorSetFeedRateOverrideRequest {
|
|
|
7011
5623
|
}
|
|
7012
5624
|
}
|
|
7013
5625
|
|
|
5626
|
+
export class DeviceSetStorageRequest extends jspb.Message {
|
|
5627
|
+
getInterfaceId(): number;
|
|
5628
|
+
setInterfaceId(value: number): void;
|
|
5629
|
+
|
|
5630
|
+
getDevice(): number;
|
|
5631
|
+
setDevice(value: number): void;
|
|
5632
|
+
|
|
5633
|
+
getAxis(): number;
|
|
5634
|
+
setAxis(value: number): void;
|
|
5635
|
+
|
|
5636
|
+
getKey(): string;
|
|
5637
|
+
setKey(value: string): void;
|
|
5638
|
+
|
|
5639
|
+
getValue(): string;
|
|
5640
|
+
setValue(value: string): void;
|
|
5641
|
+
|
|
5642
|
+
getEncode(): boolean;
|
|
5643
|
+
setEncode(value: boolean): void;
|
|
5644
|
+
|
|
5645
|
+
serializeBinary(): Uint8Array;
|
|
5646
|
+
toObject(includeInstance?: boolean): DeviceSetStorageRequest.AsObject;
|
|
5647
|
+
static toObject(includeInstance: boolean, msg: DeviceSetStorageRequest): DeviceSetStorageRequest.AsObject;
|
|
5648
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5649
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5650
|
+
static serializeBinaryToWriter(message: DeviceSetStorageRequest, writer: jspb.BinaryWriter): void;
|
|
5651
|
+
static deserializeBinary(bytes: Uint8Array): DeviceSetStorageRequest;
|
|
5652
|
+
static deserializeBinaryFromReader(message: DeviceSetStorageRequest, reader: jspb.BinaryReader): DeviceSetStorageRequest;
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5655
|
+
export namespace DeviceSetStorageRequest {
|
|
5656
|
+
export type AsObject = {
|
|
5657
|
+
interfaceId: number,
|
|
5658
|
+
device: number,
|
|
5659
|
+
axis: number,
|
|
5660
|
+
key: string,
|
|
5661
|
+
value: string,
|
|
5662
|
+
encode: boolean,
|
|
5663
|
+
}
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
export class DeviceGetStorageRequest extends jspb.Message {
|
|
5667
|
+
getInterfaceId(): number;
|
|
5668
|
+
setInterfaceId(value: number): void;
|
|
5669
|
+
|
|
5670
|
+
getDevice(): number;
|
|
5671
|
+
setDevice(value: number): void;
|
|
5672
|
+
|
|
5673
|
+
getAxis(): number;
|
|
5674
|
+
setAxis(value: number): void;
|
|
5675
|
+
|
|
5676
|
+
getKey(): string;
|
|
5677
|
+
setKey(value: string): void;
|
|
5678
|
+
|
|
5679
|
+
getDecode(): boolean;
|
|
5680
|
+
setDecode(value: boolean): void;
|
|
5681
|
+
|
|
5682
|
+
serializeBinary(): Uint8Array;
|
|
5683
|
+
toObject(includeInstance?: boolean): DeviceGetStorageRequest.AsObject;
|
|
5684
|
+
static toObject(includeInstance: boolean, msg: DeviceGetStorageRequest): DeviceGetStorageRequest.AsObject;
|
|
5685
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5686
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5687
|
+
static serializeBinaryToWriter(message: DeviceGetStorageRequest, writer: jspb.BinaryWriter): void;
|
|
5688
|
+
static deserializeBinary(bytes: Uint8Array): DeviceGetStorageRequest;
|
|
5689
|
+
static deserializeBinaryFromReader(message: DeviceGetStorageRequest, reader: jspb.BinaryReader): DeviceGetStorageRequest;
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
export namespace DeviceGetStorageRequest {
|
|
5693
|
+
export type AsObject = {
|
|
5694
|
+
interfaceId: number,
|
|
5695
|
+
device: number,
|
|
5696
|
+
axis: number,
|
|
5697
|
+
key: string,
|
|
5698
|
+
decode: boolean,
|
|
5699
|
+
}
|
|
5700
|
+
}
|
|
5701
|
+
|
|
5702
|
+
export class DeviceSetStorageNumberRequest extends jspb.Message {
|
|
5703
|
+
getInterfaceId(): number;
|
|
5704
|
+
setInterfaceId(value: number): void;
|
|
5705
|
+
|
|
5706
|
+
getDevice(): number;
|
|
5707
|
+
setDevice(value: number): void;
|
|
5708
|
+
|
|
5709
|
+
getAxis(): number;
|
|
5710
|
+
setAxis(value: number): void;
|
|
5711
|
+
|
|
5712
|
+
getKey(): string;
|
|
5713
|
+
setKey(value: string): void;
|
|
5714
|
+
|
|
5715
|
+
getValue(): number;
|
|
5716
|
+
setValue(value: number): void;
|
|
5717
|
+
|
|
5718
|
+
serializeBinary(): Uint8Array;
|
|
5719
|
+
toObject(includeInstance?: boolean): DeviceSetStorageNumberRequest.AsObject;
|
|
5720
|
+
static toObject(includeInstance: boolean, msg: DeviceSetStorageNumberRequest): DeviceSetStorageNumberRequest.AsObject;
|
|
5721
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5722
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5723
|
+
static serializeBinaryToWriter(message: DeviceSetStorageNumberRequest, writer: jspb.BinaryWriter): void;
|
|
5724
|
+
static deserializeBinary(bytes: Uint8Array): DeviceSetStorageNumberRequest;
|
|
5725
|
+
static deserializeBinaryFromReader(message: DeviceSetStorageNumberRequest, reader: jspb.BinaryReader): DeviceSetStorageNumberRequest;
|
|
5726
|
+
}
|
|
5727
|
+
|
|
5728
|
+
export namespace DeviceSetStorageNumberRequest {
|
|
5729
|
+
export type AsObject = {
|
|
5730
|
+
interfaceId: number,
|
|
5731
|
+
device: number,
|
|
5732
|
+
axis: number,
|
|
5733
|
+
key: string,
|
|
5734
|
+
value: number,
|
|
5735
|
+
}
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5738
|
+
export class DeviceGetStorageNumberRequest extends jspb.Message {
|
|
5739
|
+
getInterfaceId(): number;
|
|
5740
|
+
setInterfaceId(value: number): void;
|
|
5741
|
+
|
|
5742
|
+
getDevice(): number;
|
|
5743
|
+
setDevice(value: number): void;
|
|
5744
|
+
|
|
5745
|
+
getAxis(): number;
|
|
5746
|
+
setAxis(value: number): void;
|
|
5747
|
+
|
|
5748
|
+
getKey(): string;
|
|
5749
|
+
setKey(value: string): void;
|
|
5750
|
+
|
|
5751
|
+
serializeBinary(): Uint8Array;
|
|
5752
|
+
toObject(includeInstance?: boolean): DeviceGetStorageNumberRequest.AsObject;
|
|
5753
|
+
static toObject(includeInstance: boolean, msg: DeviceGetStorageNumberRequest): DeviceGetStorageNumberRequest.AsObject;
|
|
5754
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5755
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5756
|
+
static serializeBinaryToWriter(message: DeviceGetStorageNumberRequest, writer: jspb.BinaryWriter): void;
|
|
5757
|
+
static deserializeBinary(bytes: Uint8Array): DeviceGetStorageNumberRequest;
|
|
5758
|
+
static deserializeBinaryFromReader(message: DeviceGetStorageNumberRequest, reader: jspb.BinaryReader): DeviceGetStorageNumberRequest;
|
|
5759
|
+
}
|
|
5760
|
+
|
|
5761
|
+
export namespace DeviceGetStorageNumberRequest {
|
|
5762
|
+
export type AsObject = {
|
|
5763
|
+
interfaceId: number,
|
|
5764
|
+
device: number,
|
|
5765
|
+
axis: number,
|
|
5766
|
+
key: string,
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
5769
|
+
|
|
5770
|
+
export class DeviceSetStorageBoolRequest extends jspb.Message {
|
|
5771
|
+
getInterfaceId(): number;
|
|
5772
|
+
setInterfaceId(value: number): void;
|
|
5773
|
+
|
|
5774
|
+
getDevice(): number;
|
|
5775
|
+
setDevice(value: number): void;
|
|
5776
|
+
|
|
5777
|
+
getAxis(): number;
|
|
5778
|
+
setAxis(value: number): void;
|
|
5779
|
+
|
|
5780
|
+
getKey(): string;
|
|
5781
|
+
setKey(value: string): void;
|
|
5782
|
+
|
|
5783
|
+
getValue(): boolean;
|
|
5784
|
+
setValue(value: boolean): void;
|
|
5785
|
+
|
|
5786
|
+
serializeBinary(): Uint8Array;
|
|
5787
|
+
toObject(includeInstance?: boolean): DeviceSetStorageBoolRequest.AsObject;
|
|
5788
|
+
static toObject(includeInstance: boolean, msg: DeviceSetStorageBoolRequest): DeviceSetStorageBoolRequest.AsObject;
|
|
5789
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5790
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5791
|
+
static serializeBinaryToWriter(message: DeviceSetStorageBoolRequest, writer: jspb.BinaryWriter): void;
|
|
5792
|
+
static deserializeBinary(bytes: Uint8Array): DeviceSetStorageBoolRequest;
|
|
5793
|
+
static deserializeBinaryFromReader(message: DeviceSetStorageBoolRequest, reader: jspb.BinaryReader): DeviceSetStorageBoolRequest;
|
|
5794
|
+
}
|
|
5795
|
+
|
|
5796
|
+
export namespace DeviceSetStorageBoolRequest {
|
|
5797
|
+
export type AsObject = {
|
|
5798
|
+
interfaceId: number,
|
|
5799
|
+
device: number,
|
|
5800
|
+
axis: number,
|
|
5801
|
+
key: string,
|
|
5802
|
+
value: boolean,
|
|
5803
|
+
}
|
|
5804
|
+
}
|
|
5805
|
+
|
|
5806
|
+
export class DeviceGetStorageBoolRequest extends jspb.Message {
|
|
5807
|
+
getInterfaceId(): number;
|
|
5808
|
+
setInterfaceId(value: number): void;
|
|
5809
|
+
|
|
5810
|
+
getDevice(): number;
|
|
5811
|
+
setDevice(value: number): void;
|
|
5812
|
+
|
|
5813
|
+
getAxis(): number;
|
|
5814
|
+
setAxis(value: number): void;
|
|
5815
|
+
|
|
5816
|
+
getKey(): string;
|
|
5817
|
+
setKey(value: string): void;
|
|
5818
|
+
|
|
5819
|
+
serializeBinary(): Uint8Array;
|
|
5820
|
+
toObject(includeInstance?: boolean): DeviceGetStorageBoolRequest.AsObject;
|
|
5821
|
+
static toObject(includeInstance: boolean, msg: DeviceGetStorageBoolRequest): DeviceGetStorageBoolRequest.AsObject;
|
|
5822
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5823
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5824
|
+
static serializeBinaryToWriter(message: DeviceGetStorageBoolRequest, writer: jspb.BinaryWriter): void;
|
|
5825
|
+
static deserializeBinary(bytes: Uint8Array): DeviceGetStorageBoolRequest;
|
|
5826
|
+
static deserializeBinaryFromReader(message: DeviceGetStorageBoolRequest, reader: jspb.BinaryReader): DeviceGetStorageBoolRequest;
|
|
5827
|
+
}
|
|
5828
|
+
|
|
5829
|
+
export namespace DeviceGetStorageBoolRequest {
|
|
5830
|
+
export type AsObject = {
|
|
5831
|
+
interfaceId: number,
|
|
5832
|
+
device: number,
|
|
5833
|
+
axis: number,
|
|
5834
|
+
key: string,
|
|
5835
|
+
}
|
|
5836
|
+
}
|
|
5837
|
+
|
|
7014
5838
|
export enum MessageType {
|
|
7015
5839
|
REPLY = 0,
|
|
7016
5840
|
INFO = 1,
|
|
@@ -7060,6 +5884,8 @@ export enum Errors {
|
|
|
7060
5884
|
G_CODE_SYNTAX = 41,
|
|
7061
5885
|
G_CODE_EXECUTION = 42,
|
|
7062
5886
|
INVALID_OPERATION = 43,
|
|
5887
|
+
COMMAND_TOO_LONG = 44,
|
|
5888
|
+
NO_VALUE_FOR_KEY = 45,
|
|
7063
5889
|
}
|
|
7064
5890
|
|
|
7065
5891
|
export enum InterfaceType {
|