ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Wie kann man in Nodered die fields und tags einstellen? Sodass ich die Daten für mehrere Geräte richtig anordnen kann.
probiere mal die daten per function node zu übergeben: Bsp: msg.payload = { measurement: "dein_measurement", fields: { temperature: msg.payload.temperature, humidity: msg.payload.humidity }, tags: { device: msg.payload.deviceId, location: msg.payload.location }};return msg;
Wie kann man in Nodered die fields und tags einstellen? Sodass ich die Daten für mehrere Geräte richtig anordnen kann.
probiere mal die daten per function node zu übergeben: Bsp: msg.payload = {
measurement: "dein_measurement",
fields: {
temperature: msg.payload.temperature,
humidity: msg.payload.humidity
},
tags: {
device: msg.payload.deviceId,
location: msg.payload.location
}
};
return msg;