Commit message

This commit is contained in:
support.sampyo 2024-03-26 08:47:59 +00:00
parent bdf1323b2d
commit 54c6c55f34
2 changed files with 3 additions and 2 deletions

View File

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

View File

@ -19,8 +19,9 @@ async def measurement_weight(port, data):
result = result.replace(' ', '')
result = float(result.replace('\r\n', ''))
result *= 1000
result += 1000
print(result)
# print(result)
if result < 0.0:
result = 0.0