@@ -91,7 +91,7 @@ MTR{{cluster}}Cluster{{command}}Params
91
91
{{/if}}
92
92
93
93
using RequestType = {{asUpperCamelCase parent.name}}::Commands::{{asUpperCamelCase name}}::Type;
94
- [self.device _invokeKnownCommandWithEndpointID:@( self.endpoint)
94
+ [self.device _invokeKnownCommandWithEndpointID:self.endpointID
95
95
clusterID:@(RequestType::GetClusterId())
96
96
commandID:@(RequestType::GetCommandId())
97
97
commandPayload:params
@@ -127,7 +127,7 @@ MTR{{cluster}}Cluster{{command}}Params
127
127
(void (^)({{asObjectiveCClass type parent.name}} * _Nullable value, NSError * _Nullable error))completion
128
128
{
129
129
using TypeInfo = {{asUpperCamelCase parent.name}}::Attributes::{{asUpperCamelCase name}}::TypeInfo;
130
- [self.device _readKnownAttributeWithEndpointID:@( self.endpoint)
130
+ [self.device _readKnownAttributeWithEndpointID:self.endpointID
131
131
clusterID:@(TypeInfo::GetClusterId())
132
132
attributeID:@(TypeInfo::GetAttributeId())
133
133
{{#if_is_fabric_scoped_struct type}}
@@ -176,7 +176,7 @@ MTR{{cluster}}Cluster{{command}}Params
176
176
TypeInfo::Type cppValue;
177
177
{{>encode_value target="cppValue" source="value" cluster=parent.name errorCode="return CHIP_ERROR_INVALID_ARGUMENT;" depth=0}}
178
178
179
- chip::Controller::ClusterBase cppCluster(exchangeManager, session, self.endpoint );
179
+ chip::Controller::ClusterBase cppCluster(exchangeManager, session, self.endpointID.unsignedShortValue );
180
180
return cppCluster.WriteAttribute<TypeInfo>(cppValue, bridge, successCb, failureCb, timedWriteTimeout);
181
181
});
182
182
std::move(*bridge).DispatchAction(self.device);
@@ -189,7 +189,7 @@ subscriptionEstablished:(MTRSubscriptionEstablishedHandler _Nullable)subscriptio
189
189
reportHandler:(void (^)({{asObjectiveCClass type parent.name}} * _Nullable value, NSError * _Nullable error))reportHandler
190
190
{
191
191
using TypeInfo = {{asUpperCamelCase parent.name}}::Attributes::{{asUpperCamelCase name}}::TypeInfo;
192
- [self.device _subscribeToKnownAttributeWithEndpointID:@( self.endpoint)
192
+ [self.device _subscribeToKnownAttributeWithEndpointID:self.endpointID
193
193
clusterID:@(TypeInfo::GetClusterId())
194
194
attributeID:@(TypeInfo::GetAttributeId())
195
195
params:params
0 commit comments