view web/test.py @ 463:f2cca8062128

- use the fridge temperature for control too, keep it in a 6deg band - ignore params beginning with _
author Matt Johnston <matt@ucc.asn.au>
date Mon, 18 Feb 2013 23:31:32 +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])