Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
1708639776959.sdtroot | 2091ae5894 | |
1708639776959.sdtroot | 1104d4443e | |
1708639776959.sdtroot | 1e129bf0b9 |
|
@ -1,9 +1,9 @@
|
||||||
# 이 코드 템플릿은 SDT Cloud 환경에서 mqtt 메세지를 발행하는 코드입니다.
|
# 이 코드 템플릿은 SDT Cloud 환경에서 mqtt 메세지를 발행하는 코드입니다.
|
||||||
|
|
||||||
# 패키지 설치
|
# 패키지 설치
|
||||||
- 코드는 sdtcloudpubsub 패키지를 사용합니다. 아래 명령어로 패키지를 다운로드 해야합니다.
|
- 코드는 sdtcloudnodeqmqtt 패키지를 사용합니다. 아래 명령어로 패키지를 다운로드 해야합니다.
|
||||||
```bash
|
```bash
|
||||||
$ pip install sdtcloudpubsub
|
$ pip install sdtcloudnodeqmqtt
|
||||||
```
|
```
|
||||||
|
|
||||||
# 코드 작성
|
# 코드 작성
|
||||||
|
|
4
main.py
4
main.py
|
@ -4,7 +4,7 @@ import uuid
|
||||||
import random
|
import random
|
||||||
|
|
||||||
sdtcloud = sdtcloudnodeqmqtt.sdtcloudnodeqmqtt()
|
sdtcloud = sdtcloudnodeqmqtt.sdtcloudnodeqmqtt()
|
||||||
mqttClient = sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
|
sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
|
||||||
|
|
||||||
def runAction():
|
def runAction():
|
||||||
while True:
|
while True:
|
||||||
|
@ -13,7 +13,7 @@ def runAction():
|
||||||
"device_type": "gas",
|
"device_type": "gas",
|
||||||
"pulse_count": random.randint(0, 1)
|
"pulse_count": random.randint(0, 1)
|
||||||
}]
|
}]
|
||||||
sdtcloud.pubMessage(mqttClient, msg)
|
sdtcloud.pubMessage(msg)
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
@ -4,4 +4,5 @@ pyyaml
|
||||||
gpiod
|
gpiod
|
||||||
pymodbus
|
pymodbus
|
||||||
pytz
|
pytz
|
||||||
|
AWSIoTPythonSDK
|
||||||
#sdtcloudpubsub
|
#sdtcloudpubsub
|
Loading…
Reference in New Issue