Sofian Audry
Sofian Audry
In an effort to try to address this issue I tried implementing a solution using variadic functions. It is far from ideal and also, well, it does not work. The...
We could possibly write such operators for a bunch of floats but not for objects.
An alternative would be to create a specific Node for the job that would generalize the concept. It could potentially be able to handle both digital and analog nodes. Something...
In fact an alternative to: ```c++ void step() { pot >> serialOut; button >> serialOut; } ``` would be to declare once again an index for each serial output: ```c++...
I believe the proper way to deal with this would be to allow "array-like" nodes that would have the following extra functions: * ```get(int i)``` * ```put(int i, float value)```...
Perhaps it would be better to have a function ```next()``` which would to a ```get(i++)``` and allow statements like: ```c++ streamIn.next() >> streamOut; streamIn.next() >> streamOut; ``` But the issue...
This is related to #23
Ok I will start with Massage integration then. I think we will create a separate library for this (PlaquetteAsciiMassage, PlaquetteSlipMassage).
I mean in the documentation. @thomas you have something of that kind?
@thomasfredericks ?