I have a room widget bound to a string which is set to a URL and the image is not loading.
Here is my json, what am I doing wrong?
The rule to set the string:
rule “Startup”
when
System started
then
sFR_Image.postUpdate(“http://imgur.com/APXVQQJ.jpg”)
end
The widget:
{
“type”: “room”,
“position”: “0-0,3-2”,
“properties”: {
“label”: “Family Room”,
“photo”: {
“binding”: “sFR_Image”
},
“elements”: {
“lights”: {
“type”: “switch”,
“icon”: “light”,
“state”: {
“binding”: “gFX_FR_Lamps_S”
}
},
“motion”: {
“type”: “motion”,
“icon”: “motion”,
“state”: {
“binding”: “FR_Occupancy”
}
}
}
}
},