Skip to content
Snippets Groups Projects
Commit 7bbdc99f authored by Sai Lakhan Ekal's avatar Sai Lakhan Ekal
Browse files

fix equilibrium indicatot in prototype script

parent 7e079b60
No related branches found
No related tags found
No related merge requests found
35.0 40.0 1 10
26.0 38 3 10
......@@ -172,10 +172,10 @@ class Measurements:
def equi_indicator(self):
equilibrium_indicator = 0
if self.chamber.is_temperature_reached:
if self.chamber.is_temperature_reached():
equilibrium_indicator = equilibrium_indicator | TEMPERATURE_STABLE
if self.chamber.is_humidity_reached:
if self.chamber.is_humidity_reached():
equilibrium_indicator = equilibrium_indicator | HUMIDITY_STABLE
#FIXME
#if magnitude stable:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment