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
..
2022-09-15 20:31:08 -04:00
2022-05-27 12:59:54 -07:00
2022-05-27 12:59:54 -07:00
2021-02-26 22:35:38 -06:00
2022-07-11 13:36:44 -07:00
2022-05-27 12:59:54 -07:00
2022-01-17 16:34:47 -06:00
2022-08-13 17:41:45 -05:00
2022-05-06 15:22:43 -05:00
2021-12-22 18:21:18 -08:00
2021-11-10 10:55:53 -06:00
2022-05-27 12:59:54 -07:00
2022-05-06 15:22:43 -05:00
2021-03-15 19:27:36 +05:30
2021-03-15 19:27:36 +05:30
2022-09-28 10:06:33 -05:00