Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multipeer Connectivity framework for up to 45 devices

I hope to use the Multipeer Connectivity framework, and would appreciate any voices of experience on how best to proceed.

I need a connection between a "coach" device and up to 45 "player" devices. They will all be in the same space, but no way to predict wifi availability or connection. The coach device needs to send an instruction (a small data packet) to all player devices each second. Each "player" needs to send a reading from a Bluetooth Heartrate monitor (very small data packet) back to the coach each second. Since the maximum peers per session is 8, would any of these ideas work to accommodate the numbers I need?

a) The first 7 player devices to establish a connection with the coach advertise a different session type and allow 7 (or would this be 6?) more players to join them. Those first 7 act as a middleman to the other 49 (or 42?) by passing on the instruction from the coach and passing back the collected readings to the coach. A few second lag between instruction and heartrate reading is not preferred, but would be OK.

b) The coach device creates and advertises one session. After 7 player devices have connected, the coach device creates another session and repeats for 7 more. Repeat until all player devices are connected to the coach. This seems unlikely to work, but without understanding the magic that is Multipeer Connectivity, it was an option that came to mind.

c) The coach establishes a session with player device one, which connects to device 2... in a daisy chain topography. When each device recieves the instruction, it adds it's own reading to the data packet and sends it on. The last device returns the entire packet to the coach. I can't predict how long it would take for a round of data, and it also seems troublesome if one device leaves the group.

Any advice or voices of experience in using Multipeer Connection Framework for 45 or so devices would be appreciated.

like image 467
Dave Norfleet Avatar asked Oct 20 '13 15:10

Dave Norfleet


People also ask

What is peer to peer on Iphone?

When looking for other devices, an Apple device broadcasts a very small Bluetooth advertisement indicating that it's looking for peer-to-peer services. When any peer-to-peer-capable device hears this BTLE packet, it creates or joins a peer-to-peer network directly between the devices.

What is Multipeer connectivity?

Overview. The Multipeer Connectivity framework supports the discovery of services provided by nearby devices and supports communicating with those services through message-based data, streaming data, and resources (such as files).


1 Answers

I've been pondering something similar lately, and I'd say in your case b) would be your best option if you don't need the 'players' to communicate with each other.

Multipeer Connectivity supports multiple sessions so you could have an array for session objects, advertise as the 'coach' and with each discovered player either invite to the latest session if it has capacity or create a new one.

Your player object can keep a reference to the session and peerID for the purposes of sending data, and maybe keep a dictionary of peerID displayNames mapped to the corresponding player object to handle incoming data.

This way you also have no hops between a given 'player' and the 'coach', unlike with a) and c).

Obviously the real trick here is testing. I myself don't own 8+ devices and I'm still not sure how I'm going to test my own implementation!

Edit

I answered a similar question with actual code here: Best option for streaming data between iPhones

like image 161
ChrisH Avatar answered Nov 15 '22 22:11

ChrisH