Skip to content

Raw interface to Daikin AC units with WiFi dongles

License

Notifications You must be signed in to change notification settings

samthor/daikin-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Raw interface to Daikin AC units. Provides discovery service (via UDP multicast) and direct API access (via HTTP GET/POST).

Method descriptions can be found here, or elsewhere online.

Sample

Run logger.go or broadcast.go for simple demos.

Or, to dial a specific URL and get its sensor info:

package main

import (
  "log"
  daikin "github.com/samthor/daikin-go/api"
)

func main() {
  values, err := daikin.Get("192.168.1.155", "aircon/get_sensor_info")
  if err != nil {
    log.Fatal(err)
  }
  log.Printf("values: %+v", values)
}

About

Raw interface to Daikin AC units with WiFi dongles

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages