Any help or suggestions would be much appreciated.
I am using Node Red to perform an API query. The resulting data, after filtering and manipulation results in a concatinated string. These stings can be either one of three ‘modes’ (ssb, cw, dig) combined with one of fifty states (AL, AK, AZ, AR,…). Each string is unique, meaning there are only 150 possible combinations.
Example Outputs:
Now the tricky part…
I want to treat each led on my NeoPixel independent of each other, but evaluate at the same time. For example,
LED1 = SSB-AK If string ‘SSB-AK’ was returned in the results, then ‘ON’ else ‘OFF’
LED 2 = SSB-AK If string ‘SSB-AK’ was returned in the results, then ‘ON’ else ‘OFF’
LED 3 = DIG-AK If string ‘SSB-AK’ was returned in the results, then ‘ON’ else ‘OFF’
In the past, I have succesfully used WLED2 function node to control leds, including various presets and segments, but nothing this complicated.
Again, any assistance would be helpful. Thank you in advance.