Problem
The send marker example sends a double
msg = struct.pack('!d', marker)
Expected
The example should instead send a float, as suggested by the documentation at:
https://docs.openbci.com/Software/OpenBCISoftware/GUIWidgets/#using-udp-to-send-markers
msg = struct.pack('!f', marker)
Console Log and Screenshots
Using Synthetic streaming for testing purposes.
Using the following message over UDP as in the example:
struct.pack('!d', float(3.0))
The GUI reports
When using the following message over UDP:
struct.pack('!f', float(3.0))
The GUI reports correctly:
Problem
The send marker example sends a double
Expected
The example should instead send a float, as suggested by the documentation at:
https://docs.openbci.com/Software/OpenBCISoftware/GUIWidgets/#using-udp-to-send-markers
Console Log and Screenshots
Using Synthetic streaming for testing purposes.
Using the following message over UDP as in the example:
The GUI reports
When using the following message over UDP:
The GUI reports correctly: