https://github.com/dwighthubbard/micropython-bootconfig
https://github.com/dwighthubbard/micropython-bootconfig
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dwighthubbard/micropython-bootconfig
- Owner: dwighthubbard
- License: mit
- Created: 2016-06-11T05:40:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-12T06:02:59.000Z (over 8 years ago)
- Last Synced: 2024-11-20T11:59:13.939Z (7 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# micropython-bootconfig
Various functionality to configure micropython boards
# Configuring start/stop on boot
## Running at start
In the repl the following commands will make bootconfig to start automatically from main.py.
>>> from bootconfig.service import autostart
>>> autostart()## Disabling autostart
In the repl the following commands will prevent bootconfig from starting automatically.
>>> from bootconfig.service import disable_autostart
>>> disable_autostart()