view web/test.py @ 440:e6ec149d4063

- use the right variable for overshoot_factor - make eeprom more robust
author Matt Johnston <matt@ucc.asn.au>
date Sun, 28 Oct 2012 21:38:30 +0800
parents 83c83014e5e3
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])