wifi_password v0.1.1
WifiPassword
View Source
Returns the password of your a given router based on its ssid
Specs
get(binary()) :: {:error, :denied | :not_found} | {:ok, binary()}
Returns the password of your a given router based on its ssid
Examples
iex> WifiPassword.get("my-router")
{:ok, "YoUrWiFiPasSwOrD"}
iex> WifiPassword.get("my-invalid-router")
{:error, :not_found}