Repository for MicroPython scripts for different applications.
Main Repository Folder(MicroPythonScripts)
└── Script Folders
| |
| ├── Code
| | └── Commented code
| ├── Release
| | └── Uncomment Code
| ├── Doc
| └── README
└── HelpScript Folder
|
├── MicroPythonModules Folder
| ├── Code
| | └── Commented code
| ├── Release
| | └── Uncomment Code
| ├── Doc
| └── Examples
| └── README
├── PythonScripts Folder
| ├── Code
| | └── Commented code
| └── README
├── HTML
└── CSS
Folder containing everything related to the script.
Commented code for better understanding of it.
Code without comments and trying to be as small as possible in order to save memory on the microcontroller.
Folder containing the files like images and so on for documentation purposes.
Folder containing everything related to MicroPython and some help classes and scripts to make deployments more easy.
Commented code for better understanding of it.
Code without comment and trying to be as small as possible in order to save memory on the microcontroller.
Folder containing the files like images and so on for documentation purposes.
Folder containing the example files that in some cases will need to be renamed into main.py
so it will be run at boot time.
NOTE: Some of the code on this HelpScript
folder might be commented and it would take more space than required on the board.
Documentation of the script, class or other important information.
Needed Python packages needed on each python script. If you want to be able to use any of the Python scripts/modules use the requirements.txt
placed on the root directory of this repository.