Hi!
I have App that has some inputs, for example:
FFT / GIST (values)
Physical buttons (booleans)
Speech recognition (string)
I want to use this data in various places - UI, audio analysis, logic, etc.
Do I:
- define them in my App record with their respective data type and fill them with Update
- make them into Observables
- is there something better to use?
I always used first approach for this and then just grab them out of my App with operations like GetFFT, but I wonder if this is the right approach?