AFAIK there aren’t any commands that show encoder state because the encoders just fire off the enc(n,d) function everytime they are touched.
If the value being changed by the calls to enc(1,d) (specifically the first encoder with any delta value) is global you could ask for it’s value at the REPL! Here’s an example of what I’m talking about:
my_var = 0
[...]
function enc(n,d)
if n == 1 then
my_var = my_var + d
end
end
Then you could type my_var at the REPL and it would print 0… unless you turned the knob down, in which case you’d get something negative. Or if you turned it up you would get something positive.
Does this help?