|
|
@@ -1562,6 +1562,7 @@ $(function () {
|
|
|
className: '',
|
|
|
methodID:{},
|
|
|
methodSignature:{},
|
|
|
+ sigResponseUUID : '{e12a3dc0-3a0b-47c4-a8c3-75190a42ae68}',
|
|
|
|
|
|
init: function() {
|
|
|
var self = this;
|
|
|
@@ -1626,11 +1627,13 @@ $(function () {
|
|
|
className: 'DeviceControlService',
|
|
|
methodID: {
|
|
|
QueryHardwareInfo: 4,
|
|
|
- ReadCenterConfigStr: 5
|
|
|
+ ReadCenterConfigStr: 5,
|
|
|
+ ReadConfigValue: 6
|
|
|
},
|
|
|
methodSignature: {
|
|
|
QueryHardwareInfo: 1706767096,
|
|
|
- ReadCenterConfigStr: -673154017
|
|
|
+ ReadCenterConfigStr: -673154017,
|
|
|
+ ReadConfigValue: 730234720
|
|
|
},
|
|
|
|
|
|
QueryHardwareInfo: function (req, callback) {
|
|
|
@@ -1641,6 +1644,14 @@ $(function () {
|
|
|
|
|
|
this.webSocketInvoke(req, callback);
|
|
|
},
|
|
|
+ ReadConfigValue: function (req, callback) {
|
|
|
+ req.entity = this.entityName;
|
|
|
+ req.class = this.className;
|
|
|
+ req.methodID = this.methodID.ReadConfigValue;
|
|
|
+ req.signature = this.methodSignature.ReadConfigValue;
|
|
|
+
|
|
|
+ this.webSocketInvoke(req, callback);
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
RVC.HealthmanagerEntityCtrl = RVC.EntityController.extend({
|