-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflowdiagram.gv
More file actions
19 lines (10 loc) · 967 Bytes
/
flowdiagram.gv
File metadata and controls
19 lines (10 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
digraph G {
"Microphone input" -> "Audio Samples taken" -> "Numpy FFT" -> "Frequency buckets created";
"Frequency buckets created" -> "Microphone input" [style=bold, label = " Runs in Parrellel"];
"Frequency buckets created" -> "Animations Mapped to Frequencies" [style=bold, label = " Runs in Parrellel"];
"Animations Mapped to Frequencies" -> "Animations added to Queue";
"Animations added to Queue" -> "Animations in queue are added to Frame" -> "Frame is generated" -> "Frame information is displayed on the LED Strip" -> "Animations are either determined to end or contiue";
"Animations are either determined to end or contiue" -> "Animation has completed life cycle" -> "Animation Ends and is not put back into the queue";
"Animations are either determined to end or contiue" -> "Animation has not yet completed life cycle";
"Animation has not yet completed life cycle" -> "Animations added to Queue" [style=bold, label = " Runs in Parrellel"];
}