Hi, I was trying to use the cloud service after a long time, instead of other solutions, but every time I try to sync the mosaic configuration I get an error:
Hard to say from just the error message, in general Mosaic do not like custom images and it is better to avoid them. I would need your backup to say more.
I usually do not use them, but in this case, since the user interface needs to be understood by a lot of people I tried to be as simple as possible. Anyway I have attached the backup of the Mosaic. Let me know
This project is very small and issue I mentioned happens when backup is around 9mb. Just loaded your backup to LM and sync to cloud worked just fine. Make sure you have latest apps and also the LM cloud app.
No other way around. Your project is fine as I tested it myself and uploaded to cloud. Big projects might have problem but already locally.
What firmware do you have?
(06.12.2023, 13:17)Andrea Becagli Wrote: ah ok that makes more sense. I have the latest available 20230607.
Might this be a problem with TCP ports? Because the whole system is under a LTE Modem
Run this script once
Code:
function checktcp(ip, port)
local sock = require('socket').tcp()
sock:settimeout(1)
local res, err = sock:connect(ip, port)
sock:close()
return res, err
end
-- change IP/PORT as needed
res, err = checktcp('remote.logicmachine.net', 8883)
if res then
log('connect OK')
else
log('connect ERROR', err)
end
And then once more but change port to 443
send logs