view web/test.py @ 386:f4f0780708d1

- store settings in eeprom - change TICK to 6 secs (and fix timing bug) - measurement memory is used by all sensors - "awake" command - avoid float maths calculating vcc
author Matt Johnston <matt@ucc.asn.au>
date Tue, 10 Jul 2012 23:48:09 +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])