23 lines
561 B
Plaintext
23 lines
561 B
Plaintext
<MyLabel@Label>:
|
|
text: 'Current Temperature: n/a'
|
|
|
|
<PlotWidget@Image>:
|
|
allow_stretch: True
|
|
|
|
<MainWindow>:
|
|
label_wid: "Temperature Monitor"
|
|
BoxLayout:
|
|
orientation: 'vertical'
|
|
BoxLayout:
|
|
size_hint_y: 0.1
|
|
orientation: 'horizontal'
|
|
MyLabel:
|
|
id: 'current_temperature'
|
|
Button:
|
|
text: 'Start/Stop'
|
|
Label:
|
|
text: 'No File Chosen'
|
|
Label:
|
|
text: 'Data Source'
|
|
PlotWidget:
|
|
id: 'mainplot' |