-
Notifications
You must be signed in to change notification settings - Fork 6
/
temperx.go
99 lines (86 loc) · 2.46 KB
/
temperx.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package main
import (
"fmt"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/zserge/hid"
"log"
"os"
"time"
)
var (
rootCmd = &cobra.Command{
Use: "temperx",
Long: "Show temperature and humidity as measured by " +
"TEMPerHUM/TEMPerX USB devices (ID 413d:2107)",
Run: func(cmd *cobra.Command, args []string) {
output()
},
}
home = os.Getenv("HOME")
tf float64
to float64
hf float64
ho float64
conf string
verbose bool
)
func main() {
rootCmd.Flags().Float64Var(&tf, "tf", 1, "Factor for temperature")
rootCmd.Flags().Float64Var(&to, "to", 0, "Offset for temperature")
rootCmd.Flags().Float64Var(&hf, "hf", 1, "Factor for humidity")
rootCmd.Flags().Float64Var(&ho, "ho", 0, "Offset for humidity")
rootCmd.Flags().StringVarP(&conf, "conf", "c", home+"/.temperx.toml", "Configuration file")
rootCmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "Verbose output")
viper.BindPFlag("tf", rootCmd.Flags().Lookup("tf"))
viper.BindPFlag("to", rootCmd.Flags().Lookup("to"))
viper.BindPFlag("hf", rootCmd.Flags().Lookup("hf"))
viper.BindPFlag("ho", rootCmd.Flags().Lookup("ho"))
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func output() {
if conf != "" {
if verbose == true {
fmt.Println("Trying to read configuration from:", conf)
}
viper.SetConfigFile(conf)
viper.ReadInConfig()
}
tf := viper.GetFloat64("tf")
to := viper.GetFloat64("to")
hf := viper.GetFloat64("hf")
ho := viper.GetFloat64("ho")
hid_path := "413d:2107:0000:01"
cmd_raw := []byte{0x01, 0x80, 0x33, 0x01, 0x00, 0x00, 0x00, 0x00}
if verbose == true {
fmt.Println("Using the following factors and offsets:")
fmt.Println("tf:", tf)
fmt.Println("to:", to)
fmt.Println("hf:", hf)
fmt.Println("ho:", ho)
}
hid.UsbWalk(func(device hid.Device) {
info := device.Info()
id := fmt.Sprintf("%04x:%04x:%04x:%02x", info.Vendor, info.Product, info.Revision, info.Interface)
if id != hid_path {
return
}
if err := device.Open(); err != nil {
log.Println("Open error: ", err)
return
}
defer device.Close()
if _, err := device.Write(cmd_raw, 1*time.Second); err != nil {
log.Println("Output report write failed:", err)
return
}
if buf, err := device.Read(-1, 1*time.Second); err == nil {
tmp := (float64(buf[2])*256+float64(buf[3]))/100*tf + to
hum := (float64(buf[4])*256+float64(buf[5]))/100*hf + ho
fmt.Printf("Temperature: %v, Humidity: %v\n", tmp, hum)
}
})
}