some more tweaks

pull/26/head
Andrew de Quincey 2021-05-01 09:40:17 +01:00
rodzic 04e402a04c
commit 2ea32dd05f
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -17,7 +17,7 @@ Ensure `kiln-controller` is **stopped** during profile recording: The profile mu
To record the profile, run:
```
python kiln-tuner.py ziegler.csv
python kiln-tuner.py zn.csv
```
The above will drive your kiln to 400 and record the temperature profile to the file `zn.csv`. The file will look something like this:

Wyświetl plik

@ -64,6 +64,8 @@ def tune(csvfile, targettemp):
if temp < targettemp:
break
sys.stdout.write(f"\n{stage} {temp}/{targettemp} ")
sys.stdout.flush()
time.sleep(config.sensor_time_wait)
f.close()