Commit message
This commit is contained in:
parent
bdf1323b2d
commit
54c6c55f34
|
@ -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.2 # Stackbase(gitea)에 릴리즈 태그명 입니
|
tagName: v0.0.3 # Stackbase(gitea)에 릴리즈 태그명 입니
|
||||||
repoName: sampyo-rs232 # Stackbase(gitea)에 저장될 저장소 이릅니다.
|
repoName: sampyo-rs232 # Stackbase(gitea)에 저장될 저장소 이릅니다.
|
||||||
|
|
3
main.py
3
main.py
|
@ -19,8 +19,9 @@ async def measurement_weight(port, data):
|
||||||
result = result.replace(' ', '')
|
result = result.replace(' ', '')
|
||||||
result = float(result.replace('\r\n', ''))
|
result = float(result.replace('\r\n', ''))
|
||||||
result *= 1000
|
result *= 1000
|
||||||
|
result += 1000
|
||||||
|
|
||||||
print(result)
|
# print(result)
|
||||||
|
|
||||||
if result < 0.0:
|
if result < 0.0:
|
||||||
result = 0.0
|
result = 0.0
|
||||||
|
|
Loading…
Reference in New Issue