From a8a38f56cfe18a01ceebdafce865ab94473b60bb Mon Sep 17 00:00:00 2001 From: Andrew Suderman Date: Sat, 18 Jan 2020 19:43:37 -0700 Subject: [PATCH] Changing demo defaults --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 999de5e..a84cb02 100644 --- a/main.go +++ b/main.go @@ -35,8 +35,8 @@ func init() { rootCmd.AddCommand(onCmd) // Demo Flags - demoCmd.Flags().IntVar(&demoDelay, "speed", 200, "The delay in ms of the demo program.") - demoCmd.Flags().IntVar(&demoCount, "count", 2, "The number of loops to run the demo.") + demoCmd.Flags().IntVar(&demoDelay, "speed", 100, "The delay in ms of the demo program.") + demoCmd.Flags().IntVar(&demoCount, "count", 1, "The number of loops to run the demo.") // On Flags onCmd.Flags().StringVarP(&color, "color", "c", "white", "The color to turn the lights on to.")