HandsON-BuildHat-API 1.0.3__tar.gz → 1.0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: HandsON-BuildHat-API
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: A third-party API for controlling LEGO SPIKE devices
5
- Author-email: HandsON Technology <caffeine.reload@gmail.com>
5
+ Author-email: HaNeul Jung <caffeine.reload@gmail.com>
6
6
  License: Proprietary - Personal/Educational Use Only
7
- Project-URL: Homepage, https://github.com/yourname/HandsON-BuildHat-API
8
7
  Classifier: Programming Language :: Python :: 3
9
8
  Classifier: License :: Other/Proprietary License
10
9
  Classifier: Operating System :: OS Independent
@@ -17,8 +16,12 @@ Dynamic: license-file
17
16
  HandsON Build Hat API
18
17
  =======
19
18
  **Production** : HandsON Technology co., ltd.
20
- **Author** : HaNeul Jung (caffeine.reload@gmail.com)
21
- **Last Update** : 2025-06-07
19
+ **Author** : HaNeul Jung (hnjung@handsontech.co.kr)
20
+ **Last Update** : 2025-08-29
21
+
22
+ ## 주의
23
+ 2025-08-27 이전 판매된 빌드햇 제품의 경우 1.0.4 버전을 사용
24
+ 이후 판매된 모든 빌드햇은 1.0.5 이상의 버전을 사용하십시오.
22
25
 
23
26
  ## 개요
24
27
  제작된 빌드햇의 제어에 필요한 API 라이브러리
@@ -1,8 +1,12 @@
1
1
  HandsON Build Hat API
2
2
  =======
3
3
  **Production** : HandsON Technology co., ltd.
4
- **Author** : HaNeul Jung (caffeine.reload@gmail.com)
5
- **Last Update** : 2025-06-07
4
+ **Author** : HaNeul Jung (hnjung@handsontech.co.kr)
5
+ **Last Update** : 2025-08-29
6
+
7
+ ## 주의
8
+ 2025-08-27 이전 판매된 빌드햇 제품의 경우 1.0.4 버전을 사용
9
+ 이후 판매된 모든 빌드햇은 1.0.5 이상의 버전을 사용하십시오.
6
10
 
7
11
  ## 개요
8
12
  제작된 빌드햇의 제어에 필요한 API 라이브러리
@@ -1,13 +1,10 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0"]
3
- build-backend = "setuptools.build_meta"
4
1
 
5
2
  [project]
6
3
  name = "HandsON-BuildHat-API"
7
- version = "1.0.3"
4
+ version = "1.0.5"
8
5
  description = "A third-party API for controlling LEGO SPIKE devices"
9
6
  authors = [
10
- { name="HandsON Technology", email="caffeine.reload@gmail.com" }
7
+ { name="HaNeul Jung", email="caffeine.reload@gmail.com" }
11
8
  ]
12
9
  license = {text = "Proprietary - Personal/Educational Use Only"}
13
10
  readme = "README.md"
@@ -19,13 +16,4 @@ classifiers = [
19
16
  "Programming Language :: Python :: 3",
20
17
  "License :: Other/Proprietary License",
21
18
  "Operating System :: OS Independent",
22
- ]
23
-
24
- [project.urls]
25
- "Homepage" = "https://github.com/yourname/HandsON-BuildHat-API"
26
-
27
- [tool.setuptools]
28
- package-dir = {"" = "src"}
29
-
30
- [tool.setuptools.packages.find]
31
- where = ["src"]
19
+ ]
@@ -216,7 +216,7 @@ class Motor(_ModuleParent):
216
216
  if speed > 0: sw = 1
217
217
  else: sw = 0
218
218
 
219
- com = bytes((_ConstValue.TRA_DATA + self._PORT, _ConstValue.MOTOR_PWM_MODE, sw, abs(speed)))
219
+ com = bytes((_ConstValue.TRA_DATA + self._PORT, _ConstValue.MOTOR_PWM_MODE, abs(speed), sw))
220
220
  self._send_data(com)
221
221
 
222
222
  def run_to_position(self, degrees, speed) -> None:
@@ -1,10 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: HandsON-BuildHat-API
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: A third-party API for controlling LEGO SPIKE devices
5
- Author-email: HandsON Technology <caffeine.reload@gmail.com>
5
+ Author-email: HaNeul Jung <caffeine.reload@gmail.com>
6
6
  License: Proprietary - Personal/Educational Use Only
7
- Project-URL: Homepage, https://github.com/yourname/HandsON-BuildHat-API
8
7
  Classifier: Programming Language :: Python :: 3
9
8
  Classifier: License :: Other/Proprietary License
10
9
  Classifier: Operating System :: OS Independent
@@ -17,8 +16,12 @@ Dynamic: license-file
17
16
  HandsON Build Hat API
18
17
  =======
19
18
  **Production** : HandsON Technology co., ltd.
20
- **Author** : HaNeul Jung (caffeine.reload@gmail.com)
21
- **Last Update** : 2025-06-07
19
+ **Author** : HaNeul Jung (hnjung@handsontech.co.kr)
20
+ **Last Update** : 2025-08-29
21
+
22
+ ## 주의
23
+ 2025-08-27 이전 판매된 빌드햇 제품의 경우 1.0.4 버전을 사용
24
+ 이후 판매된 모든 빌드햇은 1.0.5 이상의 버전을 사용하십시오.
22
25
 
23
26
  ## 개요
24
27
  제작된 빌드햇의 제어에 필요한 API 라이브러리