HW: LM5 Lite (i.MX6)
SW: 20251204
I think I may have found a bug in the new LogicMachine Visu interface and I would like to understand if others can reproduce it.
Configuration:
Behavior:
In the local Visu Admin section (View Mode) everything works correctly.
In the local Visu on the LogicMachine everything works correctly.
When accessing the Visu through https://remote.logicmachine.net/ (both from a PC browser and from mobile devices using the LM Home app), the following issues occur:
Issues observed:
-- Numeric Input problem
The numeric input wraps at 255 and then starts again from 0.
Examples:
Writing 256 results in 0
257 → 1
258 → 2
3256 → 184
This looks like an 8-bit overflow behavior, even though the object is a 4-byte unsigned integer.
-- Text Input problem
The text input value is not displayed at all.
I also noticed a JavaScript conversion error in the browser console:
index-RjiBgizA.js.gz:678 Uncaught TypeError: t.replace is not a function
at hQ.updateValue (index-RjiBgizA.js.gz:678:5365)
at onShow (index-RjiBgizA.js.gz:678:5942)
at d (index-RjiBgizA.js.gz:693:267267)
at index-RjiBgizA.js.gz:693:267343
Has anyone experienced the same behavior or can confirm if this is a known issue with remote Visu / LM Home?
SW: 20251204
I think I may have found a bug in the new LogicMachine Visu interface and I would like to understand if others can reproduce it.
Configuration:
- I created a 14-byte ASCII String object and bound it to the “Text Input” widget in Visu.
- I created a 4-byte Unsigned Integer object and bound it to the “Numeric Input” widget in Visu.
Behavior:
In the local Visu Admin section (View Mode) everything works correctly.
In the local Visu on the LogicMachine everything works correctly.
When accessing the Visu through https://remote.logicmachine.net/ (both from a PC browser and from mobile devices using the LM Home app), the following issues occur:
Issues observed:
-- Numeric Input problem
The numeric input wraps at 255 and then starts again from 0.
Examples:
Writing 256 results in 0
257 → 1
258 → 2
3256 → 184
This looks like an 8-bit overflow behavior, even though the object is a 4-byte unsigned integer.
-- Text Input problem
The text input value is not displayed at all.
I also noticed a JavaScript conversion error in the browser console:
index-RjiBgizA.js.gz:678 Uncaught TypeError: t.replace is not a function
at hQ.updateValue (index-RjiBgizA.js.gz:678:5365)
at onShow (index-RjiBgizA.js.gz:678:5942)
at d (index-RjiBgizA.js.gz:693:267267)
at index-RjiBgizA.js.gz:693:267343
Has anyone experienced the same behavior or can confirm if this is a known issue with remote Visu / LM Home?