We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, can you add the OTA passwords support like LeisureLadi did for ESP8266? Thank you in advance.
// ask for a password String passCode = JOptionPane.showInputDialog(editor, "Please enter password:\n(leave empty if none required!)","ESP8266LittleFS OTA Update", JOptionPane.QUESTION_MESSAGE); if(passCode != null) { if(passCode.isEmpty()) { sysExec(new String[]{pythonCmd, espota.getAbsolutePath(), "-i", serialPort, "-s", "-f", imagePath}); } else { sysExec(new String[]{pythonCmd, espota.getAbsolutePath(), "-i", serialPort, "-s", "-f", imagePath, "-a", passCode}); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, can you add the OTA passwords support like LeisureLadi did for ESP8266? Thank you in advance.
The text was updated successfully, but these errors were encountered: