diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-12-02 15:06:02 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-12-02 15:06:02 +0100 |
| commit | e7ddeccd096c54a31f1354ff9b6d8be9ebb4e6af (patch) | |
| tree | c1d3e0a0e87c85cd5d0af071ef3b1667fd2849ae /source/main.py | |
| parent | 9a2f1f4f07dc98f2f9298b49b20381b15deae715 (diff) | |
made a new features file
Diffstat (limited to 'source/main.py')
| -rw-r--r-- | source/main.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source/main.py b/source/main.py index 5bad9d9..81bd07a 100644 --- a/source/main.py +++ b/source/main.py @@ -8,11 +8,13 @@ from PySide6.QtWidgets import ( QWidget, ) from PySide6.QtCore import Qt -import hardware_driver as lcd +import hardware_driver as LCD +import features as fe import sys +F = fe() +L = LCD() -L = lcd() class mainWindow(QMainWindow): def __init__(self): @@ -38,7 +40,7 @@ class mainWindow(QMainWindow): central_widget.setLayout(layout) def clear_screen(): - L.clear() + fe.clear() self.label.setText("Cleared the LCD screen", self) |
