Just checked the WN722N wifi on
https://wikidevi.com/wiki/TP-LINK_TL-WN722N and it appears there are at least 3 versions.
The original WN722 v1 uses the
ath9k_htc driver and WN722N v2 and WN722N v3 use the
r8188eu driver. Both of these drivers are included in the Raspbian image so you should not need to install a driver to get your wifi working unless there is an even newer version - v4?
Just tried connecting my WN722n v1 to a Pi 3 running Raspbian Stretch and it connected to my wifi network straight away. I would expect the V2 and V3 versions to connect as well as the driver they use is also included in the Raspbian Stretch image.
To get your wifi working you should just need to configure your wifi connection correctly. My set up is as follows:
File
/etc/network/interfaces should not be changed from the default.
File
/etc/wpa_supplicant/wpa_supplicant.conf should be set up like:
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="network-name"
psk="network-password"
key_mgmt=WPA-PSK
}
Set
country=GB to use the country code for the country you are in. Set
network-name and
network-password to the values your network uses. This set up is for a network using WPA/WPA2 security.
Simplicity is a prerequisite for reliability. Edsger W. Dijkstra
Please post ALL technical questions on the forum. Please Do Not send private messages.