How to get property value from InfoTable
I am writing a simple service to obtain a property, (Temperature, Humidity..etc) from a Thing. I have an InfoTable listing all the Thing properties but I want to grab the numerical value of a pre-specified property. I need some help in the last line to grab the value from the infotable obtained from GetPropertyValues.
if (thingName) {
var t = Things[thingName];
}
table = t.GetPropertyValues();
// obtain temperature value from table
// result = table.value(property);
Thanks,
Daniel

