diff --git a/src/devices/inovelli.ts b/src/devices/inovelli.ts index 6d51c6ab96f4e..4fe14637d8e16 100644 --- a/src/devices/inovelli.ts +++ b/src/devices/inovelli.ts @@ -1121,7 +1121,13 @@ const fzLocal = { const action = clickLookup[msg.data[6]]; return {action: `${button}_${action}`}; } else if (msg.type === 'readResponse') { - return msg.data; + return Object.fromEntries(Object.entries(msg.data).map((v) => { + const attr = ATTRIBUTES[v[0]]; + if (attr.values) { + v[1] = utils.getKey(attr.values, v[1]); + } + return v; + })); } }, } as Fz.Converter,