motion-master-client 0.0.105 → 0.0.106
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/package.json
CHANGED
|
@@ -1757,12 +1757,14 @@ export namespace motionmaster {
|
|
|
1757
1757
|
interface IStartCirculoEncoderConfiguration {
|
|
1758
1758
|
deviceAddress?: (number|null);
|
|
1759
1759
|
encoderOrdinal?: (number|null);
|
|
1760
|
+
batteryModeMaxAcceleration?: (number|null);
|
|
1760
1761
|
}
|
|
1761
1762
|
|
|
1762
1763
|
class StartCirculoEncoderConfiguration implements IStartCirculoEncoderConfiguration {
|
|
1763
1764
|
constructor(properties?: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderConfiguration);
|
|
1764
1765
|
public deviceAddress: number;
|
|
1765
1766
|
public encoderOrdinal: number;
|
|
1767
|
+
public batteryModeMaxAcceleration: number;
|
|
1766
1768
|
public static create(properties?: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderConfiguration): motionmaster.MotionMasterMessage.Request.StartCirculoEncoderConfiguration;
|
|
1767
1769
|
public static encode(message: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1768
1770
|
public static encodeDelimited(message: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
@@ -19596,6 +19596,7 @@ $root.motionmaster = (() => {
|
|
|
19596
19596
|
* @interface IStartCirculoEncoderConfiguration
|
|
19597
19597
|
* @property {number|null} [deviceAddress] StartCirculoEncoderConfiguration deviceAddress
|
|
19598
19598
|
* @property {number|null} [encoderOrdinal] StartCirculoEncoderConfiguration encoderOrdinal
|
|
19599
|
+
* @property {number|null} [batteryModeMaxAcceleration] StartCirculoEncoderConfiguration batteryModeMaxAcceleration
|
|
19599
19600
|
*/
|
|
19600
19601
|
|
|
19601
19602
|
/**
|
|
@@ -19629,6 +19630,14 @@ $root.motionmaster = (() => {
|
|
|
19629
19630
|
*/
|
|
19630
19631
|
StartCirculoEncoderConfiguration.prototype.encoderOrdinal = 0;
|
|
19631
19632
|
|
|
19633
|
+
/**
|
|
19634
|
+
* StartCirculoEncoderConfiguration batteryModeMaxAcceleration.
|
|
19635
|
+
* @member {number} batteryModeMaxAcceleration
|
|
19636
|
+
* @memberof motionmaster.MotionMasterMessage.Request.StartCirculoEncoderConfiguration
|
|
19637
|
+
* @instance
|
|
19638
|
+
*/
|
|
19639
|
+
StartCirculoEncoderConfiguration.prototype.batteryModeMaxAcceleration = 0;
|
|
19640
|
+
|
|
19632
19641
|
/**
|
|
19633
19642
|
* Creates a new StartCirculoEncoderConfiguration instance using the specified properties.
|
|
19634
19643
|
* @function create
|
|
@@ -19657,6 +19666,8 @@ $root.motionmaster = (() => {
|
|
|
19657
19666
|
writer.uint32(/* id 1, wireType 0 =*/8).uint32(message.deviceAddress);
|
|
19658
19667
|
if (message.encoderOrdinal != null && Object.hasOwnProperty.call(message, "encoderOrdinal"))
|
|
19659
19668
|
writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.encoderOrdinal);
|
|
19669
|
+
if (message.batteryModeMaxAcceleration != null && Object.hasOwnProperty.call(message, "batteryModeMaxAcceleration"))
|
|
19670
|
+
writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.batteryModeMaxAcceleration);
|
|
19660
19671
|
return writer;
|
|
19661
19672
|
};
|
|
19662
19673
|
|
|
@@ -19699,6 +19710,10 @@ $root.motionmaster = (() => {
|
|
|
19699
19710
|
message.encoderOrdinal = reader.uint32();
|
|
19700
19711
|
break;
|
|
19701
19712
|
}
|
|
19713
|
+
case 3: {
|
|
19714
|
+
message.batteryModeMaxAcceleration = reader.uint32();
|
|
19715
|
+
break;
|
|
19716
|
+
}
|
|
19702
19717
|
default:
|
|
19703
19718
|
reader.skipType(tag & 7);
|
|
19704
19719
|
break;
|
|
@@ -19740,6 +19755,9 @@ $root.motionmaster = (() => {
|
|
|
19740
19755
|
if (message.encoderOrdinal != null && message.hasOwnProperty("encoderOrdinal"))
|
|
19741
19756
|
if (!$util.isInteger(message.encoderOrdinal))
|
|
19742
19757
|
return "encoderOrdinal: integer expected";
|
|
19758
|
+
if (message.batteryModeMaxAcceleration != null && message.hasOwnProperty("batteryModeMaxAcceleration"))
|
|
19759
|
+
if (!$util.isInteger(message.batteryModeMaxAcceleration))
|
|
19760
|
+
return "batteryModeMaxAcceleration: integer expected";
|
|
19743
19761
|
return null;
|
|
19744
19762
|
};
|
|
19745
19763
|
|
|
@@ -19759,6 +19777,8 @@ $root.motionmaster = (() => {
|
|
|
19759
19777
|
message.deviceAddress = object.deviceAddress >>> 0;
|
|
19760
19778
|
if (object.encoderOrdinal != null)
|
|
19761
19779
|
message.encoderOrdinal = object.encoderOrdinal >>> 0;
|
|
19780
|
+
if (object.batteryModeMaxAcceleration != null)
|
|
19781
|
+
message.batteryModeMaxAcceleration = object.batteryModeMaxAcceleration >>> 0;
|
|
19762
19782
|
return message;
|
|
19763
19783
|
};
|
|
19764
19784
|
|
|
@@ -19778,11 +19798,14 @@ $root.motionmaster = (() => {
|
|
|
19778
19798
|
if (options.defaults) {
|
|
19779
19799
|
object.deviceAddress = 0;
|
|
19780
19800
|
object.encoderOrdinal = 0;
|
|
19801
|
+
object.batteryModeMaxAcceleration = 0;
|
|
19781
19802
|
}
|
|
19782
19803
|
if (message.deviceAddress != null && message.hasOwnProperty("deviceAddress"))
|
|
19783
19804
|
object.deviceAddress = message.deviceAddress;
|
|
19784
19805
|
if (message.encoderOrdinal != null && message.hasOwnProperty("encoderOrdinal"))
|
|
19785
19806
|
object.encoderOrdinal = message.encoderOrdinal;
|
|
19807
|
+
if (message.batteryModeMaxAcceleration != null && message.hasOwnProperty("batteryModeMaxAcceleration"))
|
|
19808
|
+
object.batteryModeMaxAcceleration = message.batteryModeMaxAcceleration;
|
|
19786
19809
|
return object;
|
|
19787
19810
|
};
|
|
19788
19811
|
|