WiFi Direct (Android 4.0) with multiple (3+) devices

前端 未结 4 783
暗喜
暗喜 2020-12-01 00:28

Like here: Automatic authentication for Android WiFi Direct I want to create a mobile ad-hoc Wifi network with Android devices. But unlike the linked question above I want

相关标签:
4条回答
  • 2020-12-01 00:50

    Yes,there are no limits as such. We have experimented with 5-6 devices - beyond that, it wont scale very well at the moment.

    Here is a video of tapestry on JellyBean - http://www.youtube.com/watch?v=6emgRvH4mTo&list=UUQmz9albYeqArJvmpmaQpGQ&index=1&feature=plcp

    0 讨论(0)
  • 2020-12-01 00:50

    To connect another device to p2p group: on GO device type:

    sudo wpa_cli wps_pbc
    

    and on the new device u want to join:

    sudo wpa_cli p2p_connect <GO-MAC-address> pbc join
    

    following this site: http://processors.wiki.ti.com/index.php/OMAP_Wireless_Connectivity_NLCP_WiFi_Direct_Configuration_Scripts#Connect_in_pbc_.28Push_button_Control.29

    0 讨论(0)
  • 2020-12-01 00:54

    You can do so using Java NIO (Non Blocking IO) There is also an option in Wifi Direct to create group, using that group, group own will be used as a server and can broadcast message. Using multiple clients and a Server, all devices can communicate with each other by utilizing group.

    0 讨论(0)
  • 2020-12-01 01:00

    Is there a way to not only connect 2 devices via WiFi Direct but also three or more?

    Yes, the Wi-Fi Direct specifications explain it is possible to create a 1 to many connection. One of the devices will act as a group owner (think it as an access point). I have been able to create a Wi-Fi Direct network with 3 devices during some tests.

    As all the devices have to be in the range of the group owner, you are sure that your message will arrive to the second client. 1st client -> group owner -> 2nd client

    0 讨论(0)
提交回复
热议问题