Added duino support for RC switches and added error handling to heatmiser

This commit is contained in:
Sean Bedford
2014-03-14 17:49:30 +00:00
parent 7a987b2317
commit 0a4b2a4876
3 changed files with 109 additions and 1 deletions

View File

@@ -50,7 +50,9 @@ function HeatmiserNode(n) {
});
this.read = function() {
node.hm.read_device();
if (node.hm) {
node.hm.read_device();
}
};
if (!this.currentStatus) {