
_voxl_fan(){


	COMPREPLY=()

	if [ -p /run/mpa/cpu_monitor/control ]; then
        COMPREPLY=( $(compgen -W 'max off slow auto' -- ${COMP_WORDS[COMP_CWORD]}) )
    else
        COMPREPLY=( $(compgen -W 'max off slow' -- ${COMP_WORDS[COMP_CWORD]}) )
    fi



}

complete -F _voxl_fan voxl-fan
