-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support SoftAP mode #6
Comments
Hello, i have installed your library and I like it very much. I have a device for testing. Let's talk |
Fantastic! I'm on vacation until January 2nd, if I have time before that I'll look through the code and compile a list of what needs to be tested. |
Hi again, Do you have time to test this? |
Sure, we should be able to test it in the example app. As far as I can tell we need to adjust some code in let prefix = 'PROV_';
let transport = ESPTransport.softap;
let security = ESPSecurity.secure2;
const devices = await ESPProvisionManager.searchESPDevices(
prefix,
transport,
security
);
// ... get device from list... On iOS it should work with current code, but they say "SoftAP search is not supported in iOS currently." so you would need to configure the device like this: import {
ESPDevice,
ESPTransport,
ESPSecurity,
} from '@orbital-systems/react-native-esp-idf-provisioning';
const device = new ESPDevice({
name: 'name',
transport: ESPTransport.softap,
security: ESPSecurity.secure2,
}); Then, on both Android and iOS connect with: const proofOfPossession = 'proof of possession'; // or null if ESPSecurity.unsecure
const softAPPassword = 'softAPPassword';
const username = 'username'; // or null if ESPSecurity.unsecure or ESPSecurity.secure1
await device.connect(proofOfPossession, softAPPassword, username) |
Did you ever get this to work for Soft AP? |
Hey there! Unfortunately, we haven't had time to try it yet because we only do BLE setup at the company. So the above code might or might not work. |
Hi, any updates on this? |
Version 0.4.2 includes bugfixes for SoftAP on android. Please try that version. |
Just wanted to check on the status of softAP mode? I am happy to help test and update the code as needed for this. I have an ESP32 device that currently uses the Espressif App for SoftAP Provisioning. Currently when I setup to test with a known device (no scanning) I get failed to connect to the device: Failed to connect device SoftAP network. |
I am not running the new React Native Architecture yet, maybe that will be the holiday project is to port this project to it. However I was able to create a quick mock up in my existing app. I was able to successfully provision a known device over SoftAP with Secure1. I will work to expand the application and do more testing but the basics seem to be in place and working. |
We currently do not have a device to test SoftAP provisioning with so any help appreciated!
The text was updated successfully, but these errors were encountered: