Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nigelramsay/heatmiser

Golang library for HeatMiser Wifi Thermostat
https://github.com/nigelramsay/heatmiser

Last synced: about 2 months ago
JSON representation

Golang library for HeatMiser Wifi Thermostat

Awesome Lists containing this project

README

        

# HeatMiser [![Build Status](https://travis-ci.org/nigelramsay/heatmiser.svg?branch=master)](https://travis-ci.org/nigelramsay/heatmiser) [![GoDoc](https://godoc.org/github.com/nigelramsay/heatmiser?status.svg)](https://godoc.org/github.com/nigelramsay/heatmiser)

Golang library for HeatMiser Wifi Thermostat.

## Usage

```
package main

import "github.com/nigelramsay/heatmiser"
import "fmt"

func main() {
h := heatmiser.New("http://192.168.1.7")

fmt.Println("Current temperature: ", h.Current())
fmt.Println("Target temperature: ", h.Target())
fmt.Println("Heating enabled: ", h.Enabled())
}
```

## Compatibility

This library is compatible with the following firmware revisions:

- version 1.3

## Authentication

The wifi thermostat uses Javascript to enforce the authentication, which
essentially means that there is no authentication.