Encountered a problem while setting up Bluetooth input. - Printable Version +- phyphox Forums (https://phyphox.org/forums) +-- Forum: App-Feedback (https://phyphox.org/forums/forumdisplay.php?fid=6) +--- Forum: Experiment editor (new Blockly-based version) (https://phyphox.org/forums/forumdisplay.php?fid=15) +--- Thread: Encountered a problem while setting up Bluetooth input. (/showthread.php?tid=1940) |
Encountered a problem while setting up Bluetooth input. - makemaker - 09-04-2024 When I create an experiment using the new editor and set the mode to 'default notification' with Bluetooth input, the generated XML file does not include 'mode=notification'. This prevents the experiment from being added to Phyphox on my phone. RE: Encountered a problem while setting up Bluetooth input. - Jens Noriʇzsɔɥ - 09-04-2024 The editor leaves out default values that's why there is no “mode=notification”. Could you download the .phyphox file from the editor and share it here? Then it's easier for us to check what's going on. RE: Encountered a problem while setting up Bluetooth input. - makemaker - 09-05-2024 (09-04-2024, 04:18 PM)Jens Noriʇzsɔɥ Wrote: The editor leaves out default values that's why there is no “mode=notification”. Could you download the .phyphox file from the editor and share it here? Then it's easier for us to check what's going on. <phyphox xmlns="https://phyphox.org/xml" version="1.18"> <title>bluetooth test</title> <category>MakeMaker</category> <data-containers> <container size="0">output1</container> <container size="0">output2</container> </data-containers> <input> <bluetooth name="vm3"> <output char="cddf0002-30f7-4671-8b43-5e40ba53514a" conversion="float32LittleEndian">output1</output> <output char="cddf0002-30f7-4671-8b43-5e40ba53514a" conversion="float32LittleEndian" offset="4">output2</output> </bluetooth> </input> <views> <view label="New View"> <value label="New label"> <input>output1</input> </value> </view> </views> </phyphox> ——-----------------------——— I noticed that all default settings aren't present in the XML file. For example, when offset in output1 is set to 0, or length to 1, and Bluetooth mode is set to the default notification, these values are absent from the XML as well. I noticed that all default settings aren't present in the XML file I noticed that all default settings aren't present in the XML file. For example, when offset in output1 is set to 0, or length to 1, and Bluetooth mode is set to the default notification, these values are absent from the XML as well. I noticed that all default settings aren't present in the XML file. For example, when offset in output1 is set to 0, or length to 1, and Bluetooth mode is set to the default notification, these values are absent from the XML as well. I noticed that all default settings aren't present in the XML file. For example, when offset in output1 is set to 0, or length to 1, and Bluetooth mode is set to the default notification, these values are absent from the XML as well. . For example, when offset in output1 is set to 0, or length to 1, and Bluetooth mode is set to the default notification, these values are absent from the XML as well. I noticed that all default settings aren't present in the XML file. For example, when offset in output1 is set to 0, or length to 1, and Bluetooth mode is set to the default notification, these values are absent from the XML as well. RE: Encountered a problem while setting up Bluetooth input. - Jens Noriʇzsɔɥ - 09-05-2024 You are right: “mode” is mandatory. I noticed it missing while looking into an other report and misremembered… The editor should set “mode” now. RE: Encountered a problem while setting up Bluetooth input. - makemaker - 09-11-2024 Thanks a lot for your reply, and I'm really looking forward to this issue being resolved. RE: Encountered a problem while setting up Bluetooth input. - makemaker - 09-15-2024 Today, during testing, I found that this bug has been fixed! I have finally successfully used ESP32 to send data to phyphox using Bluetooth. Thank you so much! RE: Encountered a problem while setting up Bluetooth input. - Jens Noriʇzsɔɥ - 09-15-2024 It has been directly fixed on Sep 5. You are welcome. |