22 lines
445 B
Python
22 lines
445 B
Python
|
import sdtcloudnodeqmqtt
|
||
|
import time
|
||
|
import uuid
|
||
|
import random
|
||
|
|
||
|
sdtcloud = sdtcloudnodeqmqtt.sdtcloudnodeqmqtt()
|
||
|
sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
|
||
|
|
||
|
def runAction():
|
||
|
while True:
|
||
|
msg = [{
|
||
|
"house_id": "JJ58",
|
||
|
"device_type": "gas",
|
||
|
"pulse_count": random.randint(0, 1)
|
||
|
}]
|
||
|
sdtcloud.pubMessage(msg)
|
||
|
time.sleep(10)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
runAction()
|
||
|
|