Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
1708639776959.sdtroot | 73604e51f4 | |
1708639776959.sdtroot | 48198075f1 |
|
@ -3,6 +3,7 @@ spec:
|
||||||
appName: app-name # 앱의 이름입니다.
|
appName: app-name # 앱의 이름입니다.
|
||||||
runFile: main.py # 앱의 실행 파일입니다.
|
runFile: main.py # 앱의 실행 파일입니다.
|
||||||
env:
|
env:
|
||||||
|
bin: python3
|
||||||
virtualEnv: mqtt-env # 사용할 가상환경 이름입니다.
|
virtualEnv: mqtt-env # 사용할 가상환경 이름입니다.
|
||||||
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
||||||
runtime: python3.9
|
runtime: python3.9
|
||||||
|
|
4
main.py
4
main.py
|
@ -3,14 +3,14 @@ import time
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
sdtcloud = sdtcloudpubsub.sdtcloudpubsub()
|
sdtcloud = sdtcloudpubsub.sdtcloudpubsub()
|
||||||
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:
|
||||||
msg = {
|
msg = {
|
||||||
"message": "Hello World"
|
"message": "Hello World"
|
||||||
}
|
}
|
||||||
sdtcloud.pubMessage(mqttClient, msg)
|
sdtcloud.pubMessage(msg)
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in New Issue