Mercurial > templog
view web/test.py @ 291:f7261dd970da
- replace ssl client certs with cookies
- remove unused ssh code
- add /set?fake=1 test mode
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 06 Jul 2019 16:32:16 +0800 |
parents | ca08442635ca |
children |
line wrap: on
line source
#!/usr/bin/env python import time import struct import sys import binascii def convert_ds18b20_12bit(reading): value = struct.unpack('>h', binascii.unhexlify(reading))[0] return value * 0.0625 if __name__ == '__main__': print convert_ds18b20_12bit(sys.argv[1])