solarrd/crc_test.py

14 lines
255 B
Python

#!/usr/bin/env python3
from update import *
def main():
line = b'1;2018/10/20;18:16;12.9;1.1;#;95.0;#;-1.2;#;#;0.0;0.0;1.2;1.2;16.0;1;F;1;0;0;19;4665;21;3288;0;E307\r\n'
parse_line(line.decode('ascii'))
if __name__ == '__main__':
main()