Mercurial > templog
view web/test.py @ 80:1e2068c5413a
- 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 | 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])