Commit message

This commit is contained in:
support.sampyo 2024-03-26 05:21:01 +00:00
parent 17a2847c31
commit 628dd66ca7
6 changed files with 31 additions and 2 deletions

Binary file not shown.

BIN
.main.py.un~ Normal file

Binary file not shown.

View File

@ -7,5 +7,5 @@ spec:
virtualEnv: base # 사용할 가상환경 이름입니다.
package: requirement.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
stackbase:
tagName: v0.0.1 # Stackbase(gitea)에 릴리즈 태그명 입니다.
tagName: v0.0.2 # Stackbase(gitea)에 릴리즈 태그명 입니다.
repoName: sampyo-dio # Stackbase(gitea)에 저장될 저장소 이릅니다.

11
framework.yaml~ Normal file
View File

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

View File

@ -8,7 +8,7 @@ mqttClient = sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is cli
def runAction():
while True:
msg = {
"message": "Hello World"
"messages": "Hello World"
}
sdtcloud.pubMessage(mqttClient, msg)
time.sleep(2)

18
main.py~ Normal file
View File

@ -0,0 +1,18 @@
import sdtcloudpubsub
import time
import uuid
sdtcloud = sdtcloudpubsub.sdtcloudpubsub()
mqttClient = sdtcloud.setClient(f"device-app-{uuid.uuid1()}") # parameter is client ID(string)
def runAction():
while True:
msg = {
"message": "Hello World"
}
sdtcloud.pubMessage(mqttClient, msg)
time.sleep(2)
if __name__ == "__main__":
runAction()