Esempio n. 1
0
 def _get_wizard_parameters(self) -> list:
     return [
         writeoncetextparam.WriteOnceTextParam("name"),
         intparam.IntParam("Length (hours)", 0, 0, 10000),
         intparam.IntParam("Temperature (°C)", 0, 0, 240),
         intparam.IntParam("Testwindow (hours)", 0, 0, 500)
     ]
Esempio n. 2
0
 def _get_wizard_parameters(self) -> list:
     return [writeoncetextparam.WriteOnceTextParam("name"),
             optionparam.OptionParam("Reference Measurement", self._get_possible_references()),
             intparam.IntParam("Temperature (°C)", 0, 0, 200),
             intparam.IntParam("Length (hours)", 0, 0, 10000),
             intparam.IntParam("Testwindow (hours)", 0, 0, 500),
             intparam.IntParam("Vdd (V)", 12, 0, 240)]
Esempio n. 3
0
 def _get_wizard_parameters(self) -> list:
     return [
         writeoncetextparam.WriteOnceTextParam("name"),
         intparam.IntParam("MSL", 0, 0, 10000),
         intparam.IntParam("Bake Time (hours)", 0, 0, 500),
         intparam.IntParam("Bake Temperature (°C)", 0, 0, 500),
         intparam.IntParam("Soak Time (hours)", 0, 0, 500),
         intparam.IntParam("Soak Temperature (°C)", 12, 0, 500),
         intparam.IntParam("Soak relative humidity (%)", 0, 0, 100),
         intparam.IntParam("Num Reflows", 0, 0, 500),
         intparam.IntParam("Reflow Temperature (°C)", 12, 0, 500)
     ]
Esempio n. 4
0
 def _get_wizard_parameters(self) -> list:
     return [
         writeoncetextparam.WriteOnceTextParam("name"),
         intparam.IntParam("Cylces", 0, 0, 1000),
         intparam.IntParam("Temperature (°C)", 0, 0, 200)
     ]
Esempio n. 5
0
 def _get_wizard_parameters(self) -> list:
     return [
         writeoncetextparam.WriteOnceTextParam("name"),
         optionparam.OptionParam("Type",
                                 ["Reflow", "Bodydip", "Iron Solder"])
     ]