2 WiFI wireless connection

From Banana Pi Wiki
Revision as of 23:59, 20 February 2019 by Sinovoip (talk | contribs) (connect WiFI by hand)
Jump to: navigation, search

WiFI wireless connection

BPI:bit connect WiFI AP

  • After the firmware is powered on, it will try to connect to the Internet by default after the LED light in the panel has been rolled over. You may notice that if the tool or artificial Ctrl + C stops at this time, there will be no connection to the Internet. The following code is required
mport wifi # booy.py default enable
wifi.try_connect()
  • As shown below, import wifi is invoked by default in boot.py, so you can also call wifi.try_connect() directly from REPL.
Try connect.png
  • In the default networking mode, if no network has ever been configured, the board will initially automatically connect to the WIFI hotspot with WIFI name:webduino.io password:webduino.
  • If not near the hot spot, will output the no AP found, and my surroundings are prepared ahead of the hot spots, so to get an IP address 192.168.10.185 (pictured), otherwise it will be repeated output connection problems (this does not affect your input and output), if you don't want it to continue to connect to the Internet, you can manually enter wifi.close() to stop the wifi connection.
Got ip.png

connect WiFI by mobile

connect WiFI by hand

BPI:bit WiFI connect with REPL