Posts: 4
Threads: 2
Joined: Aug 2024
Is it possible to send data back to the input device? I tried adding an output device to the experiment but the app asks for another connection.
I am specifically looking for sending configuration data that can be changed dynamically through input fields, and not hardcoded in the experiment, like config tag does
Posts: 543
Threads: 24
Joined: Apr 2020
Institution: RWTH Aachen University
Have you already looked at the example “getDataFromSmartphone.ino” in the IDE (or at
https://github.com/phyphox/phyphox-ardui...tphone.ino)?
Posts: 4
Threads: 2
Joined: Aug 2024
(10-01-2024, 09:24 PM)Jens Noriʇzsɔɥ Wrote: Have you already looked at the example “getDataFromSmartphone.ino” in the IDE (or at https://github.com/phyphox/phyphox-ardui...tphone.ino)?
I spent some time looking through the library, if I understood correctly, <bluetooth> tags in both <input> and <output> can take the same id (in case of arduino library it's "phyphoxBLE"), making the app send data to the same device it is taking input from.
I have tested this and it's working, thank you