Advertisement
Guest User

Untitled

a guest
May 24th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. ssid = 'NOME DA REDE'
  2. password = 'SENHA DA REDE'
  3.  
  4. station = network.WLAN(network.STA_IF)
  5.  
  6. station.active(True)
  7. station.connect(ssid, password)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement