The following describes how to set up bhyve with Vagrant using the vagrant-bhyve plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
// TwoAnimationsAtTheSameTime | |
// Example showing one way to run two different animations on | |
// two different parts of one LED array at the same time. | |
// | |
// The three keys to success here are: | |
// | |
// 1. Move the drawing of each animation into a separate 'draw' function, | |
// each of which is called from 'loop()'. Each 'draw' function draws |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compile and install HAProxy | |
rm -rf /tmp/haproxy-current | |
git clone http://git.haproxy.org/git/haproxy-2.0.git /tmp/haproxy-current | |
cd /tmp/haproxy-current | |
make \ | |
TARGET=linux-glibc USE_LINUX_TPROXY=1 USE_ZLIB=1 USE_REGPARM=1 USE_PCRE=1 USE_PCRE_JIT=1 \ | |
USE_OPENSSL=1 SSL_INC=/usr/include SSL_LIB=/usr/lib ADDLIB=-lpthread USE_SYSTEMD=1 | |
make install | |
# cp /tmp/haproxy-current/examples/haproxy.init /etc/init.d/haproxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
substitutions: | |
# Phases of the Voice Assistant | |
# The voice assistant is ready to be triggered by a wake word | |
voice_assist_idle_phase_id: '1' | |
# The voice assistant is waiting for a voice command (after being triggered by the wake word) | |
voice_assist_waiting_for_command_phase_id: '2' | |
# The voice assistant is listening for a voice command | |
voice_assist_listening_for_command_phase_id: '3' | |
# The voice assistant is currently processing the command | |
voice_assist_thinking_phase_id: '4' |