Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion ShimmerBLE/Shimmer32FeetBLEAPIConsoleAppExample/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
1) That the appropriate bluetooth address or comport (Shimmer device) needs to be set in Program.cs before compiling/running the example. When Using USB/Comport, first you will need to connect to BLE and enableUSB via the console app. Once connected there will be a new comport showing via Device Manager->Ports (COM & LPT) when you connect the device via USB. To use the console app example, fill in the comport and remove all uuids. The example gives preference to BLE comms, and only tries the comport if no uuids are available to try.
1) The appropriate bluetooth address or comport (Shimmer device) needs to be set in Program.cs before compiling/running the example. When Using USB/Comport, first you will need to connect to BLE and enableUSB via the console app. Once connected there will be a new comport showing via Device Manager->Ports (COM & LPT) when you connect the device via USB (_ensure you are using a data capable USB cable, also note in point 2 below you can retrieve the info via this console app_). To use the comport/USB in this console app example, fill in the comport and remove all uuids (_e.g. below_). The example gives preference to BLE comms, and only tries the comport if no uuids are available to try.
```
static List<string> uuids = new List<string>()
{

};

static List<string> comPorts = new List<string>()
{
"COM41"
};

```

2) An option is provided to obtain the comport details (see ConsoleKey.L)

Expand Down
Loading