It'd be nice to clean up the code, and do a few of the following things:
- separate display from data processing (per MVC style)
- separate parameter files for each one
- add in units (Pint library)
- use enums where possible
etc.
I'm going to start work on this, with the following proposed file structure:
main.py
requirements.txt
dataTransfer/
|__params.py
|__dataReceiving.py
|__dataProcessing.py
display/
|__params.py
|__leds.py
|__screen.py
It'd be nice to clean up the code, and do a few of the following things:
etc.
I'm going to start work on this, with the following proposed file structure: