Jeff Epler 6c3cdceb45
Implement scan, connect, ping
My pings go out, and then they come back

```py
import os
import wifi
import ipaddress

wifi.radio.connect(os.getenv('WIFI_SSID'), os.getenv('WIFI_PASSWORD'))
ipv4 = ipaddress.ip_address("8.8.4.4")
print("Ping google.com: %f ms" % (wifi.radio.ping(ipv4)*1000))
```
2022-09-28 10:06:33 -05:00
..
2021-04-29 18:42:36 +05:30
2021-04-30 21:35:02 +05:30
2022-09-28 10:06:33 -05:00
2022-09-28 10:06:33 -05:00
2021-10-22 20:19:56 +05:30
2021-10-22 20:19:56 +05:30
2022-09-28 10:06:33 -05:00
2022-09-28 10:06:33 -05:00