Difference between revisions of "2 WiFI wireless connection"

From Banana Pi Wiki
Jump to: navigation, search
(connect WiFI by hand)
(connect WiFI by mobile)
Line 18: Line 18:
  
 
==connect WiFI by mobile==
 
==connect WiFI by mobile==
 
+
*Of course, your WIFI hotspot is definitely not this one, so now you can press and hold A key and press the reset key to start to enter the mode of distribution network, connect the board to other WIFI, help the board connect to the specified WIFI, enter the mode of distribution network of SmartConfig, LED (18) will light up, LED (18) is the LED light in the previous chapter.
  
 
==connect WiFI by hand==
 
==connect WiFI by hand==
  
 
=BPI:bit WiFI connect with REPL=
 
=BPI:bit WiFI connect with REPL=

Revision as of 00:00, 21 February 2019

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

  • Of course, your WIFI hotspot is definitely not this one, so now you can press and hold A key and press the reset key to start to enter the mode of distribution network, connect the board to other WIFI, help the board connect to the specified WIFI, enter the mode of distribution network of SmartConfig, LED (18) will light up, LED (18) is the LED light in the previous chapter.

connect WiFI by hand

BPI:bit WiFI connect with REPL