Changing Things' Property Values From an If-Else Condition
Hello, everyone!
This question is quite simple:
From an AR experience (Vuforia), I want to change a Thing property (in Thingworx) only if a condition is attended. The problem is I have no idea about how the syntax is.
For example:
In Vuforia Studio > Home.js:
if(waterTemperature == 50)
{
...
[change a thing property from false to true];
...
}
I assume it would be something like "$scope.thing[ThingName].propertyvalue = true", right?
Thanks!! 🙂

