PKGBUILD/cmd/temperature/read.go

78 lines
2.2 KiB
Go
Raw Normal View History

2019-02-24 21:46:36 +00:00
package temperature
import (
"fmt"
2019-02-24 21:46:36 +00:00
"log"
"os"
"github.com/go-flucky/flucky/pkg/rgbled"
2019-06-15 13:58:41 +00:00
"github.com/go-flucky/flucky/pkg/cli"
"github.com/go-flucky/flucky/pkg/config"
"github.com/go-flucky/flucky/pkg/logfile"
"github.com/go-flucky/flucky/pkg/sensor"
2019-02-24 21:46:36 +00:00
"github.com/spf13/cobra"
)
2019-03-03 18:13:37 +00:00
var logs bool
var temperatureUnit string
2019-02-24 21:46:36 +00:00
var readTemperatureCmd = &cobra.Command{
Use: "read",
Short: "read temperature from sensor",
Example: fmt.Sprintf("flucky temperature read\nflucky temperature read outdoor"),
2019-02-24 21:46:36 +00:00
Run: func(cmd *cobra.Command, args []string) {
// read configuration
cnf, err := config.Read(configFile)
2019-02-24 21:46:36 +00:00
if err != nil {
log.Fatalln(err)
}
rgbLEDs := cnf.GetRGBLEDs(config.ENABLED)
rgbled.Run(rgbLEDs)
// fetch all temperature sensors or sensors by args
temperatureSensors := make([]sensor.TemperatureSensor, 0)
if len(args) == 0 {
temperatureSensors = cnf.GetTemperatureSensors(config.ENABLED)
} else {
temperatureSensors = cnf.GetTemperatureSensorsByName(args)
}
2019-02-24 21:46:36 +00:00
measurementUnit, err := sensor.SelectTemperatureMeasurementUnit(temperatureUnit)
if err != nil {
rgbled.Error(rgbLEDs)
log.Fatalf("Can not parse temperature unit: %v", temperatureUnit)
}
temperatures, err := sensor.ReadTemperatures(temperatureSensors, measurementUnit, round)
2019-02-28 18:48:25 +00:00
if err != nil {
rgbled.Error(rgbLEDs)
2019-02-28 18:48:25 +00:00
log.Fatalln(err)
}
2019-02-24 21:46:36 +00:00
2019-02-28 18:48:25 +00:00
// print temperatures on stdout
cli.PrintTemperatures(temperatures, cnf, os.Stdout)
if logs {
temperatureLogfile := logfile.New(cnf.Device.TemperatureLogfile)
err := logfile.AppendTemperatures(temperatureLogfile, compression, temperatures)
if err != nil {
rgbled.Error(rgbLEDs)
log.Fatalln(err)
}
}
rgbled.Off(rgbLEDs)
2019-02-24 21:46:36 +00:00
},
}
func init() {
temperatureCmd.AddCommand(readTemperatureCmd)
readTemperatureCmd.Flags().BoolVar(&logs, "logs", true, "Log temperature")
readTemperatureCmd.Flags().BoolVar(&compression, "compression", true, "Compress measured with logged temperatures")
readTemperatureCmd.Flags().Float64VarP(&round, "round", "r", 0.25, "Round values. The value 0 deactivates the function")
readTemperatureCmd.Flags().StringVar(&temperatureUnit, "temperature-unit", "celsius", "Temperature unit")
2019-02-24 21:46:36 +00:00
}