fix: sync and fetch temperatures
changes: - add sync command to synchronize device sensor information with remote servers - fix fetch functions to get temperatures
This commit is contained in:
		@@ -15,7 +15,7 @@ var addSensorCmd = &cobra.Command{
 | 
			
		||||
	Short: "Add Sensor",
 | 
			
		||||
	Args:  cobra.ExactArgs(3),
 | 
			
		||||
	Run: func(cmd *cobra.Command, args []string) {
 | 
			
		||||
		if err := sensor.Add(&args[0], &sensorLocation, &args[1], &wireID, &args[2], wirePath, configDir, enabled); err != nil {
 | 
			
		||||
		if err := sensor.Add(&args[0], &sensorLocation, &args[1], &wireID, &args[2], wirePath, configDir, &enabled); err != nil {
 | 
			
		||||
			log.Fatal(err)
 | 
			
		||||
		}
 | 
			
		||||
	},
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										26
									
								
								cmd/sensor/sync.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								cmd/sensor/sync.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,26 @@
 | 
			
		||||
package sensor
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"log"
 | 
			
		||||
 | 
			
		||||
	"git.cryptic.systems/fh-trier/go-flucky/pkg/httpcall"
 | 
			
		||||
	"github.com/spf13/cobra"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var force bool
 | 
			
		||||
 | 
			
		||||
var syncSensorCmd = &cobra.Command{
 | 
			
		||||
	Use:   "sync",
 | 
			
		||||
	Short: "Synchronise Sensors with Remote Servers",
 | 
			
		||||
	Run: func(cmd *cobra.Command, args []string) {
 | 
			
		||||
 | 
			
		||||
		if err := httpcall.SyncSensors(configDir, force); err != nil {
 | 
			
		||||
			log.Fatal(err)
 | 
			
		||||
		}
 | 
			
		||||
	},
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	sensorCmd.AddCommand(syncSensorCmd)
 | 
			
		||||
	syncSensorCmd.Flags().BoolVarP(&force, "force", "f", false, "Include disabled remote links")
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user