temp trigger working

This commit is contained in:
sergiuToporjinschi
2022-01-30 10:23:21 +02:00
parent 599d3d5f9d
commit 34d20cc80f
7 changed files with 103 additions and 14 deletions
+10 -1
View File
@@ -1,9 +1,14 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
class CalibrationModel():
def getModel(self):
self._logger.debug("getModel")
steps = self.getSteps()
temps = self.getTemps()
return {
"steps": steps
"steps": steps,
"temps": temps
}
def getSteps(self):
@@ -14,3 +19,7 @@ class CalibrationModel():
"Z": 0,
"E": 0
}
def getTemps(self):
return {'B': (), 'T0': ()}