Reputation: 11577
Im trying to add Siri integration to my app.
Intended for reading measurements from BLE device. How can I prompt user to turn on Bluetooth and continue the discussion with Siri without ending the session.
Break in the sense going to settings may break the Siri session.
Also I need to know how much a session will be available and how much responses siri can ask back.
Upvotes: 0
Views: 345
Reputation: 54755
As the SiriKit documentation clearly shows, there's no Intent for interacting with BLE devices, so you cannot achieve your goals using Siri.
As for the question regarding how much context Siri can handle/remember: it can remember all answers that were used to populate the required parameters of a specific Intent. Once your Intent extension signals Siri that it is able to handle the intent with the required information by calling the handle
function of the relevant Intent domain, Siri will forget the previous context.
Upvotes: 2