8 Commits

Author SHA1 Message Date
jiwonRepair
c8128ee586 chore: remove unused comment 2025-07-24 11:30:04 +09:00
jiwonRepair
a724e836d8 fix: handle exception when ShotSearch returns timeout message
Problem:
- Unhandled exception occurs during ShotSearch execution.
- Error message: "Conversion from string 'The operation has timed out.'
  to type 'Double' is not valid."

Reproduction:
- Occurs when the communication port is disconnected during the
  "Information Input" state.

Cause:
- ShotSearch returns a timeout message as a string.
- Comparing this string directly to an integer (e.g., If ShotSearch() = 0)
  causes a runtime type conversion exception.

Fix:
- Updated condition from:
    If ShotSearch() = 0 Then
  to:
    If ShotSearch() = "False" Then
- Prevents runtime error by avoiding invalid comparison between string and integer.
2025-07-24 11:21:32 +09:00
jiwonRepair
d44e15e03b fix: Effect V3 Color list & serial number error message fixed 2025-07-21 16:18:44 +09:00
jiwonRepair
e5e9509217 feat: EFFECT model split cartridge color code V2 & V3 2025-07-17 16:34:47 +09:00
jiwonRepair
af0aa16041 feat: MAXIMUM ALPHA 2025-07-16 10:39:32 +09:00
c273525ae7 feat: 제품 시리얼 번호 입력 시 (실제)제조일자 저장 2025-06-26 13:55:14 +09:00
56f310d888 feat: MAXIMUM_V2 색상추가(Pink, Yellow) 2025-06-25 14:36:35 +09:00
9e7a310be9 초기 커밋. 2025-06-25 11:19:00 +09:00