Wildcard imports are generally discouraged for these reasons:
(Source: https://jiga.dev/avoiding-wildcard-imports-in-java-kotlin-with-intellij/)
* Explicit imports clearly states what external classes the current class
is directly using, provided that you don’t leave redundant imports
in your code.
* If there are two classes with the same name from different packages,
it can introduce collision when using wildcard imports.
* When multiple people are working in a project, wildcard imports can
create confusion as to which classes are actually imported.
Also note that ktlint has a rule against wildcard imports.
Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
2. 확장볼러스 설정/취소 진행 시 펌프의 임시기저 상태를 먼저 확인 후 동작되도록 처리
3. 펌프에서 듀얼볼러스 진행 후 aps에서 실행 탭에서 취소시 듀얼 명령이 취소되도록 처리(기존은 square취소명령)
4. 패킷 sendMessage 이후 2초 버퍼 제거 (test)