motion-master-client 0.0.351 → 0.0.353
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
|
@@ -1536,6 +1536,7 @@ export namespace motionmaster {
|
|
|
1536
1536
|
activateHealthMonitoring?: (boolean|null);
|
|
1537
1537
|
measurementOnly?: (boolean|null);
|
|
1538
1538
|
externalEncoderType?: (number|null);
|
|
1539
|
+
velocityBaseValueRpm?: (number|null);
|
|
1539
1540
|
}
|
|
1540
1541
|
|
|
1541
1542
|
class StartCirculoEncoderNarrowAngleCalibrationProcedure implements IStartCirculoEncoderNarrowAngleCalibrationProcedure {
|
|
@@ -1545,6 +1546,7 @@ export namespace motionmaster {
|
|
|
1545
1546
|
public activateHealthMonitoring: boolean;
|
|
1546
1547
|
public measurementOnly: boolean;
|
|
1547
1548
|
public externalEncoderType: number;
|
|
1549
|
+
public velocityBaseValueRpm: number;
|
|
1548
1550
|
public static create(properties?: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderNarrowAngleCalibrationProcedure): motionmaster.MotionMasterMessage.Request.StartCirculoEncoderNarrowAngleCalibrationProcedure;
|
|
1549
1551
|
public static encode(message: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderNarrowAngleCalibrationProcedure, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1550
1552
|
public static encodeDelimited(message: motionmaster.MotionMasterMessage.Request.IStartCirculoEncoderNarrowAngleCalibrationProcedure, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
@@ -17458,6 +17458,7 @@ $root.motionmaster = (() => {
|
|
|
17458
17458
|
* @property {boolean|null} [activateHealthMonitoring] StartCirculoEncoderNarrowAngleCalibrationProcedure activateHealthMonitoring
|
|
17459
17459
|
* @property {boolean|null} [measurementOnly] StartCirculoEncoderNarrowAngleCalibrationProcedure measurementOnly
|
|
17460
17460
|
* @property {number|null} [externalEncoderType] StartCirculoEncoderNarrowAngleCalibrationProcedure externalEncoderType
|
|
17461
|
+
* @property {number|null} [velocityBaseValueRpm] StartCirculoEncoderNarrowAngleCalibrationProcedure velocityBaseValueRpm
|
|
17461
17462
|
*/
|
|
17462
17463
|
|
|
17463
17464
|
/**
|
|
@@ -17515,6 +17516,14 @@ $root.motionmaster = (() => {
|
|
|
17515
17516
|
*/
|
|
17516
17517
|
StartCirculoEncoderNarrowAngleCalibrationProcedure.prototype.externalEncoderType = 0;
|
|
17517
17518
|
|
|
17519
|
+
/**
|
|
17520
|
+
* StartCirculoEncoderNarrowAngleCalibrationProcedure velocityBaseValueRpm.
|
|
17521
|
+
* @member {number} velocityBaseValueRpm
|
|
17522
|
+
* @memberof motionmaster.MotionMasterMessage.Request.StartCirculoEncoderNarrowAngleCalibrationProcedure
|
|
17523
|
+
* @instance
|
|
17524
|
+
*/
|
|
17525
|
+
StartCirculoEncoderNarrowAngleCalibrationProcedure.prototype.velocityBaseValueRpm = 0;
|
|
17526
|
+
|
|
17518
17527
|
/**
|
|
17519
17528
|
* Creates a new StartCirculoEncoderNarrowAngleCalibrationProcedure instance using the specified properties.
|
|
17520
17529
|
* @function create
|
|
@@ -17549,6 +17558,8 @@ $root.motionmaster = (() => {
|
|
|
17549
17558
|
writer.uint32(/* id 4, wireType 0 =*/32).bool(message.measurementOnly);
|
|
17550
17559
|
if (message.externalEncoderType != null && Object.hasOwnProperty.call(message, "externalEncoderType"))
|
|
17551
17560
|
writer.uint32(/* id 5, wireType 0 =*/40).uint32(message.externalEncoderType);
|
|
17561
|
+
if (message.velocityBaseValueRpm != null && Object.hasOwnProperty.call(message, "velocityBaseValueRpm"))
|
|
17562
|
+
writer.uint32(/* id 6, wireType 0 =*/48).int32(message.velocityBaseValueRpm);
|
|
17552
17563
|
return writer;
|
|
17553
17564
|
};
|
|
17554
17565
|
|
|
@@ -17603,6 +17614,10 @@ $root.motionmaster = (() => {
|
|
|
17603
17614
|
message.externalEncoderType = reader.uint32();
|
|
17604
17615
|
break;
|
|
17605
17616
|
}
|
|
17617
|
+
case 6: {
|
|
17618
|
+
message.velocityBaseValueRpm = reader.int32();
|
|
17619
|
+
break;
|
|
17620
|
+
}
|
|
17606
17621
|
default:
|
|
17607
17622
|
reader.skipType(tag & 7);
|
|
17608
17623
|
break;
|
|
@@ -17653,6 +17668,9 @@ $root.motionmaster = (() => {
|
|
|
17653
17668
|
if (message.externalEncoderType != null && message.hasOwnProperty("externalEncoderType"))
|
|
17654
17669
|
if (!$util.isInteger(message.externalEncoderType))
|
|
17655
17670
|
return "externalEncoderType: integer expected";
|
|
17671
|
+
if (message.velocityBaseValueRpm != null && message.hasOwnProperty("velocityBaseValueRpm"))
|
|
17672
|
+
if (!$util.isInteger(message.velocityBaseValueRpm))
|
|
17673
|
+
return "velocityBaseValueRpm: integer expected";
|
|
17656
17674
|
return null;
|
|
17657
17675
|
};
|
|
17658
17676
|
|
|
@@ -17678,6 +17696,8 @@ $root.motionmaster = (() => {
|
|
|
17678
17696
|
message.measurementOnly = Boolean(object.measurementOnly);
|
|
17679
17697
|
if (object.externalEncoderType != null)
|
|
17680
17698
|
message.externalEncoderType = object.externalEncoderType >>> 0;
|
|
17699
|
+
if (object.velocityBaseValueRpm != null)
|
|
17700
|
+
message.velocityBaseValueRpm = object.velocityBaseValueRpm | 0;
|
|
17681
17701
|
return message;
|
|
17682
17702
|
};
|
|
17683
17703
|
|
|
@@ -17700,6 +17720,7 @@ $root.motionmaster = (() => {
|
|
|
17700
17720
|
object.activateHealthMonitoring = false;
|
|
17701
17721
|
object.measurementOnly = false;
|
|
17702
17722
|
object.externalEncoderType = 0;
|
|
17723
|
+
object.velocityBaseValueRpm = 0;
|
|
17703
17724
|
}
|
|
17704
17725
|
if (message.deviceAddress != null && message.hasOwnProperty("deviceAddress"))
|
|
17705
17726
|
object.deviceAddress = message.deviceAddress;
|
|
@@ -17711,6 +17732,8 @@ $root.motionmaster = (() => {
|
|
|
17711
17732
|
object.measurementOnly = message.measurementOnly;
|
|
17712
17733
|
if (message.externalEncoderType != null && message.hasOwnProperty("externalEncoderType"))
|
|
17713
17734
|
object.externalEncoderType = message.externalEncoderType;
|
|
17735
|
+
if (message.velocityBaseValueRpm != null && message.hasOwnProperty("velocityBaseValueRpm"))
|
|
17736
|
+
object.velocityBaseValueRpm = message.velocityBaseValueRpm;
|
|
17714
17737
|
return object;
|
|
17715
17738
|
};
|
|
17716
17739
|
|