smart-energy-monitor/software/firmware/energy-monitor/00-simulator/simulate.sh

8 lines
273 B
Bash
Executable file

#!/bin/sh
echo Publishing random values to topic '/iot-platform/energy-monitor/test-device/watt'
while true
do
mosquitto_pub -h localhost -p 1883 -t '/iot-platform/energy-monitor/test-device/watt' -m $((1 + $RANDOM % 10 * 500))
printf '%s' "."
sleep 1
done