Hey there,
I´m trying to fill an array called "states" with a bunch of boolean params I created in an object.
These parameters are called "0, 1, 2...34", and I was hoping to do something like this:
for (int i = 0; i++; i<36){
states[i] = param_i;
}
I could swear this works on arduino (which is where I usually code), but it doesn´t seem to work on Axoloti. I get the following error:
error: 'param_i' was not declared in this scope
states[i] = param_i;
Is what I´m trying to do not possible, or am I just not formatting it right? I tried using param_(i), param_'i', param_$i...