File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ async def dispense(self, recipe: str):
128
128
return
129
129
130
130
ingredients = self .recipes [recipe ]
131
- self ._dispense_ingredients (ingredients )
131
+ await self ._dispense_ingredients (ingredients )
132
132
133
133
async def _dispense_ingredients (self , ingredients : dict [Bottle , Oz ]):
134
134
for bottle , amount in ingredients .items ():
Original file line number Diff line number Diff line change @@ -213,6 +213,19 @@ void AppTask::AppTaskMain(void * pvParameter)
213
213
sAppTask .StartStatusLEDTimer ();
214
214
#endif
215
215
216
+ ep1.Init ();
217
+ ep2.Init ();
218
+ ep3.Init ();
219
+ ep4.Init ();
220
+ ep5.Init ();
221
+ ep6.Init ();
222
+ SetTagList (/* endpoint= */ 1 , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(gEp1TagList ));
223
+ SetTagList (/* endpoint= */ 2 , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(gEp2TagList ));
224
+ SetTagList (/* endpoint= */ 3 , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(gEp3TagList ));
225
+ SetTagList (/* endpoint= */ 4 , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(gEp4TagList ));
226
+ SetTagList (/* endpoint= */ 5 , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(gEp5TagList ));
227
+ SetTagList (/* endpoint= */ 6 , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(gEp6TagList ));
228
+
216
229
SILABS_LOG (" App Task started" );
217
230
218
231
while (true )
You can’t perform that action at this time.
0 commit comments