Apologies for this very basic question but - Using Home Assistant, I’m trying to store temperature data in a google sheet. It works but the flow below only puts the temperature in the sheet and I would like the current date/time as well so I end up in my spreadsheet with two columns.
|23 Aug 2021 16:15|28.2|
What do I need to change to my flow to get this date/time column passed to the google sheet component?
The data to be written to the sheet at the specified cells, a string will write to a single cell an array will write a row and a matrix will write multiple rows
So instead of sending separate messages, send an array with [timestamp,value]...
delete the timestamp node
add a function node BETWEEN the temperature node and the GSheet node containing...