Compare commits

...

6 Commits

Author SHA1 Message Date
1708639776959.sdtroot 73604e51f4 Update framework.yaml 2024-05-21 06:19:21 +00:00
1708639776959.sdtroot 48198075f1 Update main.py 2024-05-21 06:18:38 +00:00
1708639776959.sdtroot 41c2b93858 Commit message 2024-04-23 11:18:21 +09:00
1708639776959.sdtroot cd2f9a10fc Update framework.yaml 2024-03-26 06:42:17 +00:00
1708639776959.sdtroot 9a7e3eb206 Update requirements.txt 2024-03-26 06:42:05 +00:00
1708639776959.sdtroot 8a352156c5 Update framework.yaml 2024-03-06 08:24:33 +00:00
3 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
version: bwc/v2 # bwc 버전 정보입니다.
spec:
appName: mqtt-template # 앱의 이름입니다.
appName: app-name # 앱의 이름입니다.
runFile: main.py # 앱의 실행 파일입니다.
env:
bin: miniconda3 # 앱을 실행할 바이너라 파일 종류입니다.(장비에 따라 다르므로 확인 후 정의해야 합니다.)
bin: python3
virtualEnv: mqtt-env # 사용할 가상환경 이름입니다.
package: requirement.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
runtime: python3.9
stackbase:
userName: sujune@sdt.inc # Stackbase(gitea) ID 입니다.
tagName: v1.0.0 # Stackbase(gitea)에 릴리즈 태그명 입니다.
tagName: v1.0.1 # Stackbase(gitea)에 릴리즈 태그명 입니다.
repoName: mqtt-sdt-sdk-template # Stackbase(gitea)에 저장될 저장소 이릅니다.

View File

@ -3,14 +3,14 @@ import time
import uuid
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():
while True:
msg = {
"message": "Hello World"
}
sdtcloud.pubMessage(mqttClient, msg)
sdtcloud.pubMessage(msg)
time.sleep(2)
if __name__ == "__main__":