forked from M-Labs/thermostat
atse
f68ae12c8d
Current limit pins are driven by PWM inputs to the MAX1968 driver, but this is an implementation detail, and should not be exposed in the form of the command interface. Rename "pwm" to "output" in all instances. See M-Labs/thermostat#62 (comment).
12 lines
289 B
Python
12 lines
289 B
Python
from pytec.client import Client
|
|
|
|
tec = Client() #(host="localhost", port=6667)
|
|
tec.set_param("s-h", 1, "t0", 20)
|
|
print(tec.get_output())
|
|
print(tec.get_pid())
|
|
print(tec.get_output())
|
|
print(tec.get_postfilter())
|
|
print(tec.get_steinhart_hart())
|
|
for data in tec.report_mode():
|
|
print(data)
|