Skip to content

Commit

Permalink
Update default max brightness
Browse files Browse the repository at this point in the history
  • Loading branch information
sudermanjr committed Feb 26, 2023
1 parent 152c5cc commit c83c0ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var (
func init() {
// Flags
rootCmd.PersistentFlags().IntVarP(&ledCount, "led-count", "l", 12, "The number of LEDs in the array.")
rootCmd.PersistentFlags().IntVar(&maxBrightness, "max-brightness", 200, "The maximum brightness that will work within the 0-250 range.")
rootCmd.PersistentFlags().IntVar(&maxBrightness, "max-brightness", 250, "The maximum brightness that will work within the 0-250 range.")
rootCmd.PersistentFlags().IntVar(&minBrightness, "min-brightness", 25, "The minimum brightness that will work within the 0-250 range.")
rootCmd.PersistentFlags().IntVarP(&fadeDuration, "fade-duration", "f", 100, "The duration of fade-ins and fade-outs in ms.")

Expand Down
1 change: 1 addition & 0 deletions hack/ansible/playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- curl
- git
- realvnc-vnc-server
- vim
update_cache: yes
- name: dist-upgrade
become: true
Expand Down

0 comments on commit c83c0ee

Please sign in to comment.