LCD string with varible on the same line possible?

analog to lcd ldr with HiLow out.xodball (5.4 KB)

Hey all
I posted this xodball as an example it is pretty basic.
It has an input that can be used for anything analog. I have used two outputs to play with.
What I would like to accomplish is to have a constant sting with a variable on the same line. As an example line one would be “sequence #:”" (x)", line two “colour:”"(y)". This is to spot something that didn’t work properly on an addressable RGB project.
OH did I mention I really love this XOD

Use the concat node to join your label and variable into a single string. If variable is a number, you may want to use format node before feeding it to concat

1 Like

Thanks gweimer that is exactly what I was looking for.