mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
Popups done, Readout Screen prepared, Small fixes
This commit is contained in:
25
biogascontrollerapp/gui/main/main.py
Normal file
25
biogascontrollerapp/gui/main/main.py
Normal file
@@ -0,0 +1,25 @@
|
||||
from kivy.uix.screenmanager import Screen
|
||||
from kivy.lang import Builder
|
||||
|
||||
from lib.com import Com
|
||||
|
||||
|
||||
class MainScreen(Screen):
|
||||
def __init__(self, com: Com, **kw):
|
||||
self._com = com;
|
||||
super().__init__(**kw)
|
||||
|
||||
def start(self):
|
||||
pass
|
||||
|
||||
def end(self):
|
||||
pass
|
||||
|
||||
def reset(self):
|
||||
pass
|
||||
|
||||
def back(self):
|
||||
pass
|
||||
|
||||
|
||||
Builder.load_file('./gui/main/main.kv')
|
||||
Reference in New Issue
Block a user