Looking to have one key with multiple values...
Lets say I have this
[Bathroom Temp Eco Sensor;Humidity:[date:Fri Jul 15 11:28:13 EDT 2022,value:54]]
I want to be able to pull data from a device (easy) and then append it to this same key.
So end up with something like this
[Bathroom Temp Eco Sensor;Humidity:[date:Fri Jul 15 11:28:13 EDT 2022,value:54],[date:Fri Jul 15 12:28:13 EDT 2022,value:64]]
I know using put will just overwrite the first set of data.
Any idea how to do this??
Thanks!