View current_cost.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.6 | |
# -*- coding: utf-8 -*- | |
import sys | |
import serial | |
import threading | |
import Queue | |
import datetime | |
import xml.dom | |
import xml.dom.minidom |
View thermal-mass.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import math | |
# Constants to reference times of day in seconds conveniently. | |
MINUTES = 60 | |
HOURS = 60 * MINUTES | |
DAYS = 24 * HOURS | |
# House dimensions (in metres) and similar parameters. |
View version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
edavies@bill:~$ wget --version | |
GNU Wget 1.13.4 built on linux-gnu. | |
+digest +https +ipv6 +iri +large-file +nls +ntlm +opie +ssl/openssl | |
Wgetrc: | |
/etc/wgetrc (system) | |
Locale: /usr/share/locale | |
Compile: gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC="/etc/wgetrc" | |
-DLOCALEDIR="/usr/share/locale" -I. -I../../src -I../lib |