To auto generate the possible commands run this in the root directory:
cat lib/*Processor/*Processor.cpp | grep -E "startsWith\(\"|Processor\(\"" | sed -e 's/^.*Processor("\([a-z]*\)").*$/\n=== \1 ===/gm' | sed -e 's/^.*"\(.*\)".*$/\1/gm'
Current output:
=== system ===
reset
mute
unmute
blink=
version
=== eyes ===
color=
level=
fill=
volume=
spin=
on
off
set
reset
=== test ===
begin
=== mouth ===
reset
faketalk
talk
listen
think
text=
icon
viseme=
=== weather ===
display=
Other notes to document:
eyes.color=
Hexadecimal color converted to decimal int. For example, pink (#FF00FF) would be 16711935 by converting FF00FF using this website.
For reference, hexadecimal colors are stored as #RRGGBB
To auto generate the possible commands run this in the root directory:
cat lib/*Processor/*Processor.cpp | grep -E "startsWith\(\"|Processor\(\"" | sed -e 's/^.*Processor("\([a-z]*\)").*$/\n=== \1 ===/gm' | sed -e 's/^.*"\(.*\)".*$/\1/gm'
Current output:
Other notes to document:
eyes.color=
Hexadecimal color converted to decimal int. For example, pink (
#FF00FF
) would be16711935
by convertingFF00FF
using this website.For reference, hexadecimal colors are stored as #RRGGBB