13 lines
211 B
Python
13 lines
211 B
Python
|
|
import raw_eater
|
|
|
|
eatraw = raw_eater.raweater(b"sample/pressure_Vacuum.raw")
|
|
|
|
print(eatraw.channel_name())
|
|
print(eatraw.unit())
|
|
|
|
print(eatraw.get_time())
|
|
print(eatraw.get_channel())
|
|
|
|
eatraw.print(b"mycsv.csv")
|