23 lines
331 B
Go
23 lines
331 B
Go
|
package pressure
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var compression bool
|
||
|
var configFile string
|
||
|
var round float64
|
||
|
|
||
|
var pressureCmd = &cobra.Command{
|
||
|
Use: "pressure",
|
||
|
Short: "Read pressure from sensor",
|
||
|
}
|
||
|
|
||
|
// Execute a
|
||
|
func InitCmd(cmd *cobra.Command, cnfFile string) {
|
||
|
configFile = cnfFile
|
||
|
|
||
|
cmd.AddCommand(pressureCmd)
|
||
|
|
||
|
}
|