From ef48b8ce94c7af890e6938145f00f2a0fb2428a6 Mon Sep 17 00:00:00 2001 From: vova Date: Sat, 3 Jun 2023 19:52:38 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'main.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.py b/main.py index 0d4ee61..a7c990e 100644 --- a/main.py +++ b/main.py @@ -119,14 +119,14 @@ class AppWindow(QMainWindow): # TODO: переписать названия пушей и лейблов if checked: getattr(self.ui, 'pushButton_switch_lamp' + n).setText("Выкл") - getattr(self.ui, 'label_' + n + '4').hide() - getattr(self.ui, 'label_' + n + '0').show() + getattr(self.ui, 'label_lamp_on' + n).hide() + getattr(self.ui, 'label_lamp_off' + n).show() print("I'm worked too much") # TODO: нужно что-то более осмысленное else: - getattr(self.ui, 'label_' + n + '0').hide() - getattr(self.ui, 'label_' + n + '4').show() - getattr(self.ui, 'pushButton_' + n).setText("Вкл") + getattr(self.ui, 'label_lamp_off' + n).hide() + getattr(self.ui, 'label_lamp_on' + n).show() + getattr(self.ui, 'pushButton_switch_lamp' + n).setText("Вкл") print ("I'm worked too") # TODO: нужно что-то более осмысленное @@ -315,8 +315,8 @@ class AppWindow(QMainWindow): self.plot.update(data["temperature"]) - def update_buttons(self, bs): - for i in range(1, 4): + def update_buttons(self, bs):#на панели 3 тумблера, данная функция осуществляет их обработку + for i in range(1, 4): button_state = bs[i-1] if button_state == 'True': getattr(self.ui, f'label_tumbler_on{i}').show()