Untitled
unknown
plain_text
a month ago
300 B
3
Indexable
Never
// 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;
Leave a Comment