
_voxl-send-neopixel-cmd(){
	local OPTS=('--brightness --debug --help --num-leds --one-shot --rgb')
	COMPREPLY=()
	if [ "$COMP_CWORD" -eq 1 ]; then
		COMPREPLY=( $(compgen -W '${OPTS}' -- ${COMP_WORDS[COMP_CWORD]}) )
		return 0
	fi
}

complete -F _voxl-send-neopixel-cmd voxl-send-neopixel-cmd
