12.11.2018, 07:59
It's not supported directly, but can be done via a script. You need to upload visualization.png and touch.png via FTP to LM. Note that you need to clear cache after this and icons will be reset after firmware upgrade.
Code:
data = io.readfile('/home/ftp/visualization.png')
if data then
io.writefile('/www/scada/resources/images/visualization.png', data)
end
data = io.readfile('/home/ftp/touch.png')
if data then
io.writefile('/www/scada/resources/images/touch.png', data)
end