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
Use function of https://github.com/brainelectronics/Micropython-ESP-WiFi-Manager/blob/b5d355cba0e479049a78a081bc99d5f3367d5e53/wifi_manager/wifi_manager.py#L69 to generate a unique id of specified length. Default is standard length. To be used in brainelectronics/MyEVSE-Webinterface#9
The text was updated successfully, but these errors were encountered:
09b6ae6
Extend function to return also the last n character as follows
amount = abs(length) // uuid_len + (abs(length) % uuid_len > 0) if length < 0: return (uuid * amount)[-length:] else: return (uuid * amount)[:length]
Sorry, something went wrong.
add functionality to get last or first n characters of device UUID, s…
3d00b5b
…ee additional comment #11
No branches or pull requests
Use function of https://github.com/brainelectronics/Micropython-ESP-WiFi-Manager/blob/b5d355cba0e479049a78a081bc99d5f3367d5e53/wifi_manager/wifi_manager.py#L69 to generate a unique id of specified length. Default is standard length. To be used in brainelectronics/MyEVSE-Webinterface#9
The text was updated successfully, but these errors were encountered: