Untitled
unknown
plain_text
10 months ago
300 B
8
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