C++ & OpenVINO
This commit is contained in:
@ -6,16 +6,10 @@ def connect(essid='ESP', clients=3) -> bool:
|
||||
print('Starting AP: {0}...'.format(essid))
|
||||
ap = network.WLAN(network.AP_IF)
|
||||
ap.active(True)
|
||||
ap.config(essid=essid)
|
||||
ap.config(max_clients=clients)
|
||||
ap.config(essid=essid, max_clients=clients)
|
||||
|
||||
time.sleep(3)
|
||||
while ap.active() == False:
|
||||
pass
|
||||
|
||||
if ap.isconnected():
|
||||
print('AP "{0}" started'.format(essid))
|
||||
|
||||
return True
|
||||
else:
|
||||
print('Starting AP failed!')
|
||||
|
||||
return False
|
||||
print('AP "{0}" started'.format(essid))
|
||||
return True
|
||||
|
Reference in New Issue
Block a user