smartpi 0.1.37__py3-none-any.whl → 0.1.39__py3-none-any.whl
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.
- smartpi/__init__.py +1 -1
- smartpi/base_driver.py +78 -32
- smartpi/posemodel/posenet.tflite +0 -0
- smartpi/text_gte_model/config/__init__.py +0 -0
- smartpi/text_gte_model/config/config.json +30 -0
- smartpi/text_gte_model/config/quantize_config.json +30 -0
- smartpi/text_gte_model/config/special_tokens_map.json +7 -0
- smartpi/text_gte_model/config/tokenizer.json +14924 -0
- smartpi/text_gte_model/config/tokenizer_config.json +23 -0
- smartpi/text_gte_model/config/vocab.txt +14760 -0
- smartpi/text_gte_model/gte/__init__.py +0 -0
- smartpi/text_gte_model/gte/gte_model.onnx +0 -0
- smartpi/trace.py +1 -1
- {smartpi-0.1.37.dist-info → smartpi-0.1.39.dist-info}/METADATA +1 -1
- {smartpi-0.1.37.dist-info → smartpi-0.1.39.dist-info}/RECORD +17 -7
- {smartpi-0.1.37.dist-info → smartpi-0.1.39.dist-info}/WHEEL +0 -0
- {smartpi-0.1.37.dist-info → smartpi-0.1.39.dist-info}/top_level.txt +0 -0
|
File without changes
|
|
Binary file
|
smartpi/trace.py
CHANGED
|
@@ -100,7 +100,7 @@ def set_threshold(port:bytes, second:int) -> Optional[bytes]:
|
|
|
100
100
|
time.sleep(0.005)
|
|
101
101
|
serial_lock.acquire() #获取线程锁
|
|
102
102
|
fcntl.flock(ser.fileno(), fcntl.LOCK_EX) # 进程锁,阻塞其他进程
|
|
103
|
-
base_driver.write_data(0X01, 0X02, trace_str)
|
|
103
|
+
base_driver.write_data(0X01, 0X02, trace_str, False)
|
|
104
104
|
start_time = time.time()
|
|
105
105
|
|
|
106
106
|
while True:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
smartpi/__init__.py,sha256=
|
|
1
|
+
smartpi/__init__.py,sha256=LgSBlByXGxmiXhChGNwjiCBUlA15KEEF6zyjjQSnKRU,356
|
|
2
2
|
smartpi/_gui.py,sha256=ij-6HZAEIwdy_hvU7f0NkyQjx_-eephijlKbGUhf8Uo,2177
|
|
3
|
-
smartpi/base_driver.py,sha256=
|
|
3
|
+
smartpi/base_driver.py,sha256=ErjnmKXexJNq7o_V7gLqbPmitbLBJykj2-jY0psu3AM,22673
|
|
4
4
|
smartpi/camera.py,sha256=AVpZsMpW-24CP3BOfarjmRawMJdTOZY7Crq7FeLOqb4,3292
|
|
5
5
|
smartpi/color_sensor.py,sha256=ckIXD81YnqPo6nENAnipNp3gY12FJ235QKj0e8Cul9E,521
|
|
6
6
|
smartpi/cw2015.py,sha256=1lAF-pi_ye_ya1AZQS1sjbgsDf7MThO5IAskKsNGBzA,5695
|
|
@@ -24,11 +24,21 @@ smartpi/rknn_voice_workflow.py,sha256=T8iRQWPtJYXqoHIZH2FiT1WLxwN3HQg4D-mg-5KvYd
|
|
|
24
24
|
smartpi/servo.py,sha256=0p09Jk-IVk5nLXz2AqFvytiYSSe4sMxdy1FaNMQijoY,5770
|
|
25
25
|
smartpi/temperature.py,sha256=xfM9V5dvJ9M-3rqnE2AjaYXEH9jP5s1_Myo4GEwH3NY,485
|
|
26
26
|
smartpi/touch_sensor.py,sha256=Zp7z0qnaZ99cuamakqDwI2tFd2a3CnjQ1rngdn_mZlM,463
|
|
27
|
-
smartpi/trace.py,sha256=
|
|
27
|
+
smartpi/trace.py,sha256=EZhhWspxv6FsjKkWvSNnqXR2XKrfjntvAqQm2vn9bbE,4798
|
|
28
28
|
smartpi/ultrasonic.py,sha256=qrGge3G9_1s3ZdKYZRJ_FP8l_VhbpYEe-anlShooMwA,647
|
|
29
29
|
smartpi/posemodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
smartpi/posemodel/posenet.tflite,sha256=KFcCnk1X5KvJrVC_c_PhL76pdvwL0hZvBdNqhzZ7J2I,1303152
|
|
30
31
|
smartpi/text_gte_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
smartpi
|
|
32
|
-
smartpi
|
|
33
|
-
smartpi
|
|
34
|
-
smartpi
|
|
32
|
+
smartpi/text_gte_model/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
smartpi/text_gte_model/config/config.json,sha256=dkFw_GRLSEkp6VT2U92alaGUfCRRJBQysJYSbJYznLc,818
|
|
34
|
+
smartpi/text_gte_model/config/quantize_config.json,sha256=snZbw5kBj_FupAbcYazm_11wNRCbX2m468VBjl6svd4,703
|
|
35
|
+
smartpi/text_gte_model/config/special_tokens_map.json,sha256=PDUH823_V7zkNyI9s7MIHR4rUuw-Vu5VQ4GT7LLJTdY,132
|
|
36
|
+
smartpi/text_gte_model/config/tokenizer.json,sha256=BC58aSuzfzE-tNG0UDwcFfNT_mJOYFaLoVoOs_JBEjQ,312882
|
|
37
|
+
smartpi/text_gte_model/config/tokenizer_config.json,sha256=w5RiDifbeIYy6vyGX5v94vFmcko1TMItqnY0RfcBO1Q,639
|
|
38
|
+
smartpi/text_gte_model/config/vocab.txt,sha256=oi9hP3uz_8h8XoHNh6rgLnVdJbIEm75zKoSKM8HzsC8,84758
|
|
39
|
+
smartpi/text_gte_model/gte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
smartpi/text_gte_model/gte/gte_model.onnx,sha256=XXYg6TUhzOx1SqAhp6ePDU0QgeK6DQEqHATMuQQJCNE,30468366
|
|
41
|
+
smartpi-0.1.39.dist-info/METADATA,sha256=qKSCrEvV5APB123Lk272-FhatFQTZL1lSQxJSDYFGzY,399
|
|
42
|
+
smartpi-0.1.39.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
43
|
+
smartpi-0.1.39.dist-info/top_level.txt,sha256=PoLhUCmWAiQUg5UeN2fS-Y1iQyBbF2rdUlizXtpHGRQ,8
|
|
44
|
+
smartpi-0.1.39.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|