-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbinOutput.py
65 lines (49 loc) · 1.64 KB
/
binOutput.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- coding: utf-8 -*-
"""
Created on Wed Oct 28 15:57:53 2020
@author: stepp
Application to write a value to a file in a remote location as fast as possible
"""
import os.path as ospath
import time
from datetime import datetime
def main():
""" Use this to test a direct binary alternating value to the specified file. """
path = "//lebnas1.epfl.ch/microsc125/Watchdog/"
filename = 'binary_output.dat'
fullFileDir = path + filename
output = False
output = bool(output)
try:
while True:
time1 = time.perf_counter()
file = open(fullFileDir, 'wb')
file.write(bytearray(output))
file.close()
# This changes the value every some seconds
if (time.perf_counter() % 3) < 1.5:
output = False
print('False False False')
else:
output = True
print(output)
time3 = time.perf_counter()
time.sleep(0.5-(time3-time1))
except KeyboardInterrupt:
print('done')
def writeBin(output, printTime=0, path="//lebnas1.epfl.ch/microsc125/Watchdog/",
filename='binary_output.dat'):
""" Write a integer to a binary file that can be read by readBinNetwork.m from Matlab """
if filename != '':
fullFileDir = ospath.join(path, filename)
else:
fullFileDir = path
file = open(fullFileDir, 'wb')
file.write(bytearray(output))
file.close()
if printTime:
now = datetime.now()
currentTime = now.strftime("%H:%M:%S.%f")
print(f"{output} written at {currentTime}")
if __name__ == "__main__":
main()