You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I make the ff. perform in the correct order within characteristicA's dataSetter?
Write on characteristicA
Notify characteristicB w/ new value "1"
Perform some internal logic in standalone
Notify characteristicB w/ new value "0"
Currently I get the ff. order for the values I receive on characteristicB:
Write on characteristicA
Perform some internal logic in standalone
Notify characteristicB w/ new value "1"
Notify characteristicB w/ new value "0"
Initial investigation shows that "ggkNofifyUpdatedCharacteristic" adds the notification entries into a queue and only pops the items in the queue after I perform the internal logic and I exit the dataSetter function. Is it possible to make the first scenario work in GGK?
The text was updated successfully, but these errors were encountered:
How can I make the ff. perform in the correct order within characteristicA's dataSetter?
Currently I get the ff. order for the values I receive on characteristicB:
Initial investigation shows that "ggkNofifyUpdatedCharacteristic" adds the notification entries into a queue and only pops the items in the queue after I perform the internal logic and I exit the dataSetter function. Is it possible to make the first scenario work in GGK?
The text was updated successfully, but these errors were encountered: