mirror of
https://github.com/Seal-Ammonia/Read-Sensor-Resistances.git
synced 2025-03-04 13:19:29 +00:00
Delete writerandomvalues.py
This commit is contained in:
parent
c6a68202fe
commit
2170c05b05
@ -1,14 +0,0 @@
|
||||
from random import randint
|
||||
from datetime import datetime
|
||||
import json
|
||||
|
||||
# constant settings
|
||||
a = json.load(open('settings.json', 'r'))
|
||||
sens = len(a['sensor_ports'])
|
||||
fileName = a["file_name"]
|
||||
numberofsensors = len(a['sensor_ports'])
|
||||
|
||||
for i in range(1000):
|
||||
f = open(fileName, 'a')
|
||||
f.write(", ".join([datetime.now().strftime('%H:%M:%S')] + [str(randint(1, 1000)) for j in range(numberofsensors)]) + '\n')
|
||||
f.close()
|
Loading…
x
Reference in New Issue
Block a user