scanNetoworks not works without set "ProofOfPossession"
See original GitHub issueI am creating the instance and the ESPDevice like this:
mProvisionManager = ESPProvisionManager.getInstance(requireContext());
mProvisionManager.createESPDevice(ESPConstants.TransportType.TRANSPORT_BLE, ESPConstants.SecurityType.SECURITY_1);
But to start with scanNetowork
I need to setProofOfPossession("")
like this:
mProvisionManager.getEspDevice().setProofOfPossession("");
mProvisionManager.getEspDevice().scanNetworks()...
If I am not set as empty, the scanNetowork
failed.
I see that should set pop otherwise the Security instance is null
new Security1(proofOfPossession)
end cannot create Session -> new Session(transport, security)
So is it normal force to set setProofOfPossession
as empty string?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
WiFi.scanNetworks() not working on ESP32 and no ... - GitHub
I use the disconnect function along with autoConnect and autoReconnect on ESP8266 and it works fine. The scanNetworks() example provided by ...
Read more >Scan Class - ESP8266 Arduino Core documentation
scanNetworks ¶. Scan for available Wi-Fi networks in one run and return the number of networks that has been discovered. WiFi ...
Read more >NA User Guide - Support
Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer.
Read more >Letter to US Department of Justice About Child Protection ...
However, the use of surveillance software to scan networks without warrants for violators raised concerns over whether this technology was ...
Read more >BOTNET TAKEDOWNS AND THE FOURTH AMENDMENT
It argues that the government can remotely execute commands on infected computers without performing a search, as long as the computer does not...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok, I see now that there is a new version releases a few hours ago
implementation 'com.github.espressif:esp-idf-provisioning-android:lib-2.0.7'
So, I think that now this problem is solved. ThanksHi @developerGM ,
proofOfPossession
is already initialised by empty string in new version of library. If you still need to do this changes with new app, then I would link to know in which class you need this change.