Commit message
This commit is contained in:
parent
0a351ca635
commit
0c77a24a40
|
@ -7,5 +7,5 @@ spec:
|
||||||
virtualEnv: base # 사용할 가상환경 이름입니다.
|
virtualEnv: base # 사용할 가상환경 이름입니다.
|
||||||
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
||||||
stackbase:
|
stackbase:
|
||||||
tagName: v0.0.16 # Stackbase(gitea)에 릴리즈 태그명 입니다.
|
tagName: v0.0.17 # Stackbase(gitea)에 릴리즈 태그명 입니다.
|
||||||
repoName: sampyo-dio # Stackbase(gitea)에 저장될 저장소 이릅니다.
|
repoName: sampyo-dio # Stackbase(gitea)에 저장될 저장소 이릅니다.
|
||||||
|
|
5
main.py
5
main.py
|
@ -48,7 +48,7 @@ def Valve_EnterWater(chip, status, action):
|
||||||
status[4] = 1
|
status[4] = 1
|
||||||
else: # action == 'Off'
|
else: # action == 'Off'
|
||||||
status[4] = 0
|
status[4] = 0
|
||||||
|
|
||||||
chip.set_values(status)
|
chip.set_values(status)
|
||||||
|
|
||||||
def measure_weight(client):
|
def measure_weight(client):
|
||||||
|
@ -93,7 +93,8 @@ def Command_Read():
|
||||||
vent_duration = int(cmd['device']['vent']['duration'])
|
vent_duration = int(cmd['device']['vent']['duration'])
|
||||||
vent_holding = int(cmd['device']['vent']['holding'])
|
vent_holding = int(cmd['device']['vent']['holding'])
|
||||||
measure_duration = int(cmd['device']['measure']['duration'])
|
measure_duration = int(cmd['device']['measure']['duration'])
|
||||||
|
enter_duration = int(cmd['device']['enter']['duration'])
|
||||||
|
|
||||||
time.sleep(7)
|
time.sleep(7)
|
||||||
start = Measure_Weight(client=client)
|
start = Measure_Weight(client=client)
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
|
|
Loading…
Reference in New Issue