monome / crow

Crow speaks and listens and remembers bits of text. A scriptable USB-CV-II machine
GNU General Public License v3.0
162 stars 34 forks source link

allow variable style control of ii address #441

Closed trentgill closed 2 years ago

trentgill commented 2 years ago

just a simple metamethod extension to allow controlling ii address in a variable style, rather than with functions. aligns the style with Cal and Input and Output.

-- now
ii.address = 2
print(ii.address)

-- previously (still supported)
ii.set_address(2)
print(ii.get_address())