I’m trying to integrate Blade Detect with my Array Selector such that an array named NO_BLADE gets ignored when switching array manually, but will still be switched to when Blade Detect tells it to.
But I don’t know what the system calls those index numbers.
struct SabersenseArraySelector {
static int return_value; // Tracks current array index.
float id() {
return return_value;
}
static void cycle() {
// Skip NO_BLADE array during cycling
int num_blades = NELEM(blades);
do {
return_value = (return_value + 1) % num_blades;
} while (blades[return_value].id() == NO_BLADE);
}
};
but the system is complaing that id() isn’t recogised. I also tried ‘index’ but that didn’t work either.
So does ProffieOS have a different name for those numbers?
also, you should check if ohm is NO_BLADE or larger, so like this:
do {
i = (i + 1) % num_blades;
} while (blades[i].ohm >= NO_BLADE);
If you then set return_value to blades[i].ohm, then you can avoid having to set the ID to 0, 1, 2. etc. (Of course you’ll also need to map return_value to an index at the beginning of cycle().)
I’ve added your solution, Prof, and it’s working well, but I don’t have a Blade Detect hilt to test it fully. The good news is I have one on the bench that will have have BD and should be finished shortly. As soon as I’ve tested all aspects, I’ll update my prop and submit a PR to include the new Array Selector/Blade Detect functionality.