Mercurial > templog
view web/test.py @ 89:51d889ad39a3
main.c : add a delay before turning on uart
server : try and improve timeouts, get rid of lightblue, don't use https,
use python logging module
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 15 Jul 2012 21:49:59 +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])