openmusic
openmusic copied to clipboard
osc-send sends downcased strings, even when address is given as a string
OSC message addresses with upper case characters are converted into all lowercase strings. See api/externals/OSC/cl-osc/osc.lisp, JBJMC201309, force-string. (defun force-string (data) (string-downcase (string data))) This should fix it: (defun force-string (data) (if (simple-string-p data) data (string-downcase (string data)) )) May not be an issue in encode-data.