Hi!
I'm using nrf52832, SDK 16 and s132. I've successfully used a ble_app_hids_keyboard example to make a Bluetooth HID peripheral device to transfer sensor data to the PC. I'm using SimpleHIDWrite (https://github.com/IliumVR/SimplerHidWrite) to receive/transmit data from/to the dev board. Everything seems to work fine.
Now I want to add another sensor board to the network and I have a couple of questions.
- Is it possible to read from two HID devices, one after another, and combine data? Are there any PC tools available (like SHW) that can do that?
- What changes do I need to do to the firmware for each individual board (device name, IDs...) to make this work?
- Would it be better to make one of the boards a central and the other a peripheral to it and only connect the central to the PC? Is it possible for central to act as HID in this case? Which examples should I look at to start this?