Page_3.py 368 B

123456789101112131415
  1. import tkinter as tk
  2. import tk_tools
  3. from .globals import *
  4. class Page_3(tk.Frame):
  5. def __init__(self, parent, controller):
  6. tk.Frame.__init__(self, parent)
  7. self.controller = controller
  8. label = tk.Label(self, text="Druck", font=LARGE_FONT)
  9. label.pack(pady=10,padx=10)
  10. def update(self, visible):
  11. #self.controller.getLastValue('adc_0')
  12. pass