Untitled
unknown
plain_text
a year ago
300 B
10
Indexable
// Generate random weight between 10 and 100 kg
var weight = Math.floor(Math.random() * 90) + 10;
// Generate random temperature between 30 and 45°C
var temperature = Math.floor(Math.random() * 15) + 30;
msg.payload = {
weight: weight,
temperature: temperature
};
return msg;
Editor is loading...
Leave a Comment