bluer-sbc 9.105.1__py3-none-any.whl → 9.112.1__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.
Potentially problematic release.
This version of bluer-sbc might be problematic. Click here for more details.
- bluer_sbc/README/designs/__init__.py +27 -25
- bluer_sbc/README/designs/adapter_bus.py +38 -0
- bluer_sbc/README/designs/battery_bus.py +9 -7
- bluer_sbc/README/designs/shelter.py +9 -10
- bluer_sbc/README/designs/swallow.py +1 -0
- bluer_sbc/README/designs/swallow_head.py +1 -0
- bluer_sbc/README/root.py +2 -0
- bluer_sbc/__init__.py +1 -1
- bluer_sbc/designs/adapter_bus/__init__.py +0 -0
- bluer_sbc/designs/adapter_bus/parts.py +5 -0
- bluer_sbc/parts/db.py +11 -1
- {bluer_sbc-9.105.1.dist-info → bluer_sbc-9.112.1.dist-info}/METADATA +6 -5
- {bluer_sbc-9.105.1.dist-info → bluer_sbc-9.112.1.dist-info}/RECORD +16 -13
- {bluer_sbc-9.105.1.dist-info → bluer_sbc-9.112.1.dist-info}/WHEEL +0 -0
- {bluer_sbc-9.105.1.dist-info → bluer_sbc-9.112.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_sbc-9.105.1.dist-info → bluer_sbc-9.112.1.dist-info}/top_level.txt +0 -0
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
from bluer_sbc.README.design import design
|
|
2
|
-
from bluer_sbc.README.designs
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
from bluer_sbc.README.designs import (
|
|
3
|
+
cheshmak,
|
|
4
|
+
battery_bus,
|
|
5
|
+
adapter_bus,
|
|
6
|
+
swallow,
|
|
7
|
+
swallow_head,
|
|
8
|
+
bryce,
|
|
9
|
+
nafha,
|
|
10
|
+
shelter,
|
|
11
|
+
ultrasonic_sensor_tester,
|
|
12
|
+
x,
|
|
12
13
|
)
|
|
13
14
|
|
|
14
|
-
from bluer_sbc.designs.battery_bus.parts import dict_of_parts as battery_bus_parts
|
|
15
|
-
from bluer_sbc.designs.swallow.parts import dict_of_parts as swallow_parts
|
|
16
|
-
from bluer_sbc.designs.swallow_head.parts import dict_of_parts as swallow_head_parts
|
|
17
15
|
|
|
18
16
|
docs = [
|
|
19
17
|
{
|
|
@@ -23,34 +21,38 @@ docs = [
|
|
|
23
21
|
}
|
|
24
22
|
for design_name, design_info in {
|
|
25
23
|
"battery-bus": design(
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
battery_bus.items,
|
|
25
|
+
battery_bus.parts,
|
|
26
|
+
),
|
|
27
|
+
"adapter-bus": design(
|
|
28
|
+
adapter_bus.items,
|
|
29
|
+
adapter_bus.parts,
|
|
28
30
|
),
|
|
29
31
|
"bryce": design(
|
|
30
|
-
|
|
32
|
+
bryce.items,
|
|
31
33
|
),
|
|
32
34
|
"cheshmak": design(
|
|
33
|
-
|
|
35
|
+
cheshmak.items,
|
|
34
36
|
),
|
|
35
37
|
"nafha": design(
|
|
36
|
-
|
|
38
|
+
nafha.items,
|
|
37
39
|
),
|
|
38
40
|
"shelter": design(
|
|
39
|
-
|
|
41
|
+
shelter.items,
|
|
40
42
|
),
|
|
41
43
|
"swallow-head": design(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
swallow_head.items,
|
|
45
|
+
swallow_head.parts,
|
|
44
46
|
),
|
|
45
47
|
"swallow": design(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
+
swallow.items,
|
|
49
|
+
swallow.parts,
|
|
48
50
|
),
|
|
49
51
|
"ultrasonic-sensor-tester": design(
|
|
50
|
-
|
|
52
|
+
ultrasonic_sensor_tester.items,
|
|
51
53
|
),
|
|
52
54
|
"x": design(
|
|
53
|
-
|
|
55
|
+
x.items,
|
|
54
56
|
),
|
|
55
57
|
}.items()
|
|
56
58
|
]
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
from bluer_objects import README
|
|
2
|
+
from bluer_objects.README.items import ImageItems
|
|
3
|
+
from bluer_objects.README.consts import assets_url, designs_url
|
|
4
|
+
|
|
5
|
+
from bluer_sbc.designs.adapter_bus.parts import dict_of_parts as parts
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
assets2 = assets_url(
|
|
9
|
+
suffix="adapter-bus",
|
|
10
|
+
volume=2,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
marquee = README.Items(
|
|
14
|
+
[
|
|
15
|
+
{
|
|
16
|
+
"name": "adapter bus",
|
|
17
|
+
"marquee": f"{assets2}/20251017_222911.jpg",
|
|
18
|
+
"url": "./bluer_sbc/docs/adapter-bus.md",
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
items = ImageItems(
|
|
24
|
+
{
|
|
25
|
+
designs_url(
|
|
26
|
+
"adapter-bus/wiring.png?raw=true",
|
|
27
|
+
): designs_url(
|
|
28
|
+
"adapter-bus/wiring.svg",
|
|
29
|
+
),
|
|
30
|
+
f"{assets2}/20251017_222911.jpg": "",
|
|
31
|
+
f"{assets2}/20251017_222929.jpg": "",
|
|
32
|
+
f"{assets2}/20251017_222938.jpg": "",
|
|
33
|
+
f"{assets2}/20251017_222943.jpg": "",
|
|
34
|
+
f"{assets2}/20251017_222949.jpg": "",
|
|
35
|
+
f"{assets2}/20251017_223017.jpg": "",
|
|
36
|
+
f"{assets2}/20251017_223034.jpg": "",
|
|
37
|
+
}
|
|
38
|
+
)
|
|
@@ -3,7 +3,9 @@ from bluer_objects.README.items import ImageItems
|
|
|
3
3
|
from bluer_objects.README.consts import assets_url
|
|
4
4
|
from bluer_objects.README.consts import designs_url
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
from bluer_sbc.designs.battery_bus.parts import dict_of_parts as parts
|
|
7
|
+
|
|
8
|
+
assets2 = assets_url(
|
|
7
9
|
suffix="battery-bus",
|
|
8
10
|
volume=2,
|
|
9
11
|
)
|
|
@@ -12,7 +14,7 @@ marquee = README.Items(
|
|
|
12
14
|
[
|
|
13
15
|
{
|
|
14
16
|
"name": "battery bus",
|
|
15
|
-
"marquee": f"{
|
|
17
|
+
"marquee": f"{assets2}/20251007_221902.jpg",
|
|
16
18
|
"url": "./bluer_sbc/docs/battery-bus.md",
|
|
17
19
|
}
|
|
18
20
|
]
|
|
@@ -20,15 +22,15 @@ marquee = README.Items(
|
|
|
20
22
|
|
|
21
23
|
items = ImageItems(
|
|
22
24
|
{
|
|
23
|
-
f"{
|
|
25
|
+
f"{assets2}/concept.png": "",
|
|
24
26
|
designs_url(
|
|
25
27
|
"battery-bus/electrical/wiring.png?raw=true",
|
|
26
28
|
): designs_url(
|
|
27
29
|
"battery-bus/electrical/wiring.svg",
|
|
28
30
|
),
|
|
29
|
-
f"{
|
|
30
|
-
f"{
|
|
31
|
-
f"{
|
|
32
|
-
f"{
|
|
31
|
+
f"{assets2}/20251007_221902.jpg": "",
|
|
32
|
+
f"{assets2}/20251007_220642.jpg": "",
|
|
33
|
+
f"{assets2}/20251007_220520.jpg": "",
|
|
34
|
+
f"{assets2}/20251007_220601.jpg": "",
|
|
33
35
|
}
|
|
34
36
|
)
|
|
@@ -2,20 +2,19 @@ from bluer_objects import README
|
|
|
2
2
|
from bluer_objects.README.items import ImageItems
|
|
3
3
|
from bluer_objects.README.consts import assets_url
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
image_template = assets2 + "shelter/{}?raw=true"
|
|
8
|
-
|
|
9
|
-
assets2_shelter = assets_url(
|
|
5
|
+
assets2 = assets_url(
|
|
10
6
|
suffix="shelter",
|
|
11
7
|
volume=2,
|
|
12
8
|
)
|
|
13
9
|
|
|
10
|
+
image_template = assets2 + "/{}?raw=true"
|
|
11
|
+
|
|
12
|
+
|
|
14
13
|
marquee = README.Items(
|
|
15
14
|
[
|
|
16
15
|
{
|
|
17
16
|
"name": "shelter",
|
|
18
|
-
"marquee": f"{
|
|
17
|
+
"marquee": f"{assets2}/20251006_181554.jpg",
|
|
19
18
|
"url": "./bluer_sbc/docs/shelter.md",
|
|
20
19
|
}
|
|
21
20
|
]
|
|
@@ -25,9 +24,9 @@ items = ImageItems(
|
|
|
25
24
|
{image_template.format(f"{index+1:02}.png"): "" for index in range(4)}
|
|
26
25
|
) + ImageItems(
|
|
27
26
|
{
|
|
28
|
-
f"{
|
|
29
|
-
f"{
|
|
30
|
-
f"{
|
|
31
|
-
f"{
|
|
27
|
+
f"{assets2}/20251005_180841.jpg": "",
|
|
28
|
+
f"{assets2}/20251006_181432.jpg": "",
|
|
29
|
+
f"{assets2}/20251006_181509.jpg": "",
|
|
30
|
+
f"{assets2}/20251006_181554.jpg": "",
|
|
32
31
|
}
|
|
33
32
|
)
|
|
@@ -2,6 +2,7 @@ from bluer_objects import README
|
|
|
2
2
|
from bluer_objects.README.items import ImageItems
|
|
3
3
|
|
|
4
4
|
from bluer_sbc.README.designs.consts import assets2
|
|
5
|
+
from bluer_sbc.designs.swallow.parts import dict_of_parts as parts
|
|
5
6
|
|
|
6
7
|
|
|
7
8
|
image_template = assets2 + "swallow/design/v5/{}?raw=true"
|
|
@@ -2,6 +2,7 @@ from bluer_objects import README
|
|
|
2
2
|
from bluer_objects.README.items import ImageItems
|
|
3
3
|
|
|
4
4
|
from bluer_sbc.README.designs.consts import assets2
|
|
5
|
+
from bluer_sbc.designs.swallow_head.parts import dict_of_parts as parts
|
|
5
6
|
|
|
6
7
|
|
|
7
8
|
image_template = assets2 + "swallow/design/head-v1/{}?raw=true"
|
bluer_sbc/README/root.py
CHANGED
|
@@ -5,6 +5,7 @@ from bluer_sbc.README.designs.swallow_head import marquee as swallow_head_marque
|
|
|
5
5
|
from bluer_sbc.README.designs.bryce import marquee as bryce_marquee
|
|
6
6
|
from bluer_sbc.README.designs.nafha import marquee as nafha_marquee
|
|
7
7
|
from bluer_sbc.README.designs.shelter import marquee as shelter_marquee
|
|
8
|
+
from bluer_sbc.README.designs.adapter_bus import marquee as adapter_bus_marquee
|
|
8
9
|
from bluer_sbc.README.designs.battery_bus import marquee as battery_bus_marquee
|
|
9
10
|
from bluer_sbc.README.designs.ultrasonic_sensor_tester import (
|
|
10
11
|
marquee as ultrasonic_sensor_tester_marquee,
|
|
@@ -17,6 +18,7 @@ docs = [
|
|
|
17
18
|
+ swallow_head_marquee
|
|
18
19
|
+ swallow_marquee
|
|
19
20
|
+ battery_bus_marquee
|
|
21
|
+
+ adapter_bus_marquee
|
|
20
22
|
+ ultrasonic_sensor_tester_marquee
|
|
21
23
|
+ bryce_marquee
|
|
22
24
|
+ cheshmak_marquee
|
bluer_sbc/__init__.py
CHANGED
|
File without changes
|
bluer_sbc/parts/db.py
CHANGED
|
@@ -366,7 +366,7 @@ db_of_parts["on-off-switch"] = Part(
|
|
|
366
366
|
|
|
367
367
|
db_of_parts["charging-port"] = Part(
|
|
368
368
|
info=[
|
|
369
|
-
"charging port",
|
|
369
|
+
"charging port 5.5 mm",
|
|
370
370
|
],
|
|
371
371
|
images=[
|
|
372
372
|
"charging-port.jpg",
|
|
@@ -537,6 +537,16 @@ db_of_parts["micro-usb-cable"] = Part(
|
|
|
537
537
|
],
|
|
538
538
|
)
|
|
539
539
|
|
|
540
|
+
db_of_parts["charger-socket"] = Part(
|
|
541
|
+
info=[
|
|
542
|
+
"charger socket 5.5 mm",
|
|
543
|
+
],
|
|
544
|
+
images=[
|
|
545
|
+
"charger-socket.jpg",
|
|
546
|
+
],
|
|
547
|
+
)
|
|
548
|
+
|
|
549
|
+
|
|
540
550
|
db_of_parts["template"] = Part(
|
|
541
551
|
info=[
|
|
542
552
|
"template",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bluer_sbc
|
|
3
|
-
Version: 9.
|
|
3
|
+
Version: 9.112.1
|
|
4
4
|
Summary: 🌀 AI for single board computers and related designs.
|
|
5
5
|
Home-page: https://github.com/kamangir/bluer-sbc
|
|
6
6
|
Author: Arash Abadpour (Kamangir)
|
|
@@ -47,9 +47,10 @@ pip install bluer_sbc
|
|
|
47
47
|
| | | |
|
|
48
48
|
| --- | --- | --- |
|
|
49
49
|
| [`swallow head`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow-head.md) | [`swallow`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/swallow.md) | [`battery bus`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/battery-bus.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/battery-bus.md) |
|
|
50
|
-
| [`
|
|
51
|
-
| [`
|
|
52
|
-
| [`
|
|
50
|
+
| [`adapter bus`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/adapter-bus.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/adapter-bus.md) | [`ultrasonic-sensor-tester`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/ultrasonic-sensor-tester.md) | [`bryce`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bryce.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bryce.md) |
|
|
51
|
+
| [`cheshmak`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/cheshmak.md) | [`nafha`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/nafha.md) | [`shelter`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/shelter.md) |
|
|
52
|
+
| [`blue3`](https://github.com/kamangir/blue-bracket/blob/main/designs/blue3.md) [](https://github.com/kamangir/blue-bracket/blob/main/designs/blue3.md) | [`chenar-grove`](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) [](https://github.com/kamangir/blue-bracket/blob/main/designs/chenar-grove.md) | [`cube`](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) [](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) |
|
|
53
|
+
| [`eye_nano`](https://github.com/kamangir/blue-bracket/blob/main/designs/eye_nano.md) [](https://github.com/kamangir/blue-bracket/blob/main/designs/eye_nano.md) | | |
|
|
53
54
|
|
|
54
55
|
## shortcuts
|
|
55
56
|
|
|
@@ -66,7 +67,7 @@ pip install bluer_sbc
|
|
|
66
67
|
|
|
67
68
|
[](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml) [](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml) [](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml) [](https://pypi.org/project/bluer-sbc/) [](https://pypistats.org/packages/bluer-sbc)
|
|
68
69
|
|
|
69
|
-
built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-9.
|
|
70
|
+
built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-9.112.1`](https://github.com/kamangir/bluer-sbc).
|
|
70
71
|
|
|
71
72
|
|
|
72
73
|
built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bluer_sbc/__init__.py,sha256=
|
|
1
|
+
bluer_sbc/__init__.py,sha256=d9iToY_lf0U0zrH5MwXXfM1zpAXXaa4NYU5sQI47iUU,312
|
|
2
2
|
bluer_sbc/__main__.py,sha256=mdHwITYb7ypMkevZnEBqFO-S4MYkdrTfbS8ZYTd5MBM,374
|
|
3
3
|
bluer_sbc/config.env,sha256=Lp91dQZrPDtMO-87-pAw1wOqLMIYEI1MlNrXhvKMaoE,706
|
|
4
4
|
bluer_sbc/env.py,sha256=saEjdk3FHmuK-WQUUpKfOatwmE93Y2Ula3rtGhRm0Zw,1745
|
|
@@ -49,24 +49,27 @@ bluer_sbc/README/aliases.py,sha256=jv6YlFBk7Bn72MEutmZ6UpELpLQs_i3_3Rm8BlPMc5g,1
|
|
|
49
49
|
bluer_sbc/README/build.py,sha256=42pCUarnbdwxuWci1GnCSWMtkt5P-zbiyHRd6ItVMqc,862
|
|
50
50
|
bluer_sbc/README/design.py,sha256=gktc7rLWf32XXCVBSJyoVeC3mrGPzPnLDJsVZklCEik,794
|
|
51
51
|
bluer_sbc/README/parts.py,sha256=pIF2dzEuXeBi_M8dPEg2GM9dpAgL3EzKgvm0KwrmQFU,382
|
|
52
|
-
bluer_sbc/README/root.py,sha256=
|
|
52
|
+
bluer_sbc/README/root.py,sha256=WYUpmpDrkGtwSDV9wiodn_bL1hbl56WlykjWXV7UQiI,1290
|
|
53
53
|
bluer_sbc/README/shortcuts.py,sha256=Pu7e83Vpz9mZv717jzOluJnGXwo22bUJPZ122NPjUpM,390
|
|
54
|
-
bluer_sbc/README/designs/__init__.py,sha256=
|
|
55
|
-
bluer_sbc/README/designs/
|
|
54
|
+
bluer_sbc/README/designs/__init__.py,sha256=IK1edHRbjbPVL4G2unUW9v2r6__dj7s_gaVk06mPPeo,1258
|
|
55
|
+
bluer_sbc/README/designs/adapter_bus.py,sha256=xDnaFq5fj2Gl1jIMHiHWXiZfvFkWOiCgiB5oU2TBRCM,988
|
|
56
|
+
bluer_sbc/README/designs/battery_bus.py,sha256=dO4rq2PKy7MuI8QMnaGdPByueORPLS5WSeGwz-XTGFU,948
|
|
56
57
|
bluer_sbc/README/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
|
|
57
58
|
bluer_sbc/README/designs/bryce.py,sha256=9mfOoMy9Rk1AITj480CoLYdgzWNraAwwypc5kVpEB_Q,474
|
|
58
59
|
bluer_sbc/README/designs/cheshmak.py,sha256=fG0zRc6vVm5Nj07Juq13PPGp0ZUWyLqA9-nAUpnzr1Q,483
|
|
59
60
|
bluer_sbc/README/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
|
|
60
61
|
bluer_sbc/README/designs/nafha.py,sha256=7IOfF_bfWaPNeV-VEXjsXjkydxJKlRTQX6rEOAtmSSc,474
|
|
61
|
-
bluer_sbc/README/designs/shelter.py,sha256=
|
|
62
|
-
bluer_sbc/README/designs/swallow.py,sha256=
|
|
63
|
-
bluer_sbc/README/designs/swallow_head.py,sha256=
|
|
62
|
+
bluer_sbc/README/designs/shelter.py,sha256=56OtMFxMBrASOrG-aWFPxKo7QIokxtxMSe4sRqMMSFs,746
|
|
63
|
+
bluer_sbc/README/designs/swallow.py,sha256=lnKwR_dVT2NYfdjRZeszcwQBPKziWW1jcn9TdbK6DS8,558
|
|
64
|
+
bluer_sbc/README/designs/swallow_head.py,sha256=F7LWVJCeEtCgy5FfIcWUsKPTIkWaNRLY7HTjmS_rSl8,578
|
|
64
65
|
bluer_sbc/README/designs/ultrasonic_sensor_tester.py,sha256=fljUikScYa9Y2tcMs7QRwYbUd-NA59Pc7IQtyZyA2w0,524
|
|
65
66
|
bluer_sbc/README/designs/x.py,sha256=1AmuFV4WmVwE8lwZMn_juwFSlwC2VHVgcDbkCdAt_FM,474
|
|
66
67
|
bluer_sbc/ROS/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
67
68
|
bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
69
|
bluer_sbc/algo/diff.py,sha256=ZCUkRgip-Uss86r--RuEwyYtFjpukM3fbY_yovXwgNw,2190
|
|
69
70
|
bluer_sbc/designs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
+
bluer_sbc/designs/adapter_bus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
+
bluer_sbc/designs/adapter_bus/parts.py,sha256=5wulv8sGQH-duHOH-_7p_atz-L3wr0LGvqkyu2LcYJ0,92
|
|
70
73
|
bluer_sbc/designs/battery_bus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
74
|
bluer_sbc/designs/battery_bus/parts.py,sha256=nmstgbDftDUE5N4HS4x7RE_QSKUdHVm1ieNlwtL1tb4,114
|
|
72
75
|
bluer_sbc/designs/swallow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -116,15 +119,15 @@ bluer_sbc/imager/lepton/python2.py,sha256=1jAHHzmda_bmqKj0b0X-2KONW5s9umxKaTY4Zi
|
|
|
116
119
|
bluer_sbc/parts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
120
|
bluer_sbc/parts/__main__.py,sha256=8gIFylyfCv35e3VOlt0LY_K4oCMdmW9OFkj54bFab9k,903
|
|
118
121
|
bluer_sbc/parts/consts.py,sha256=UIld-5czxqoAtMTeTZM4LQZXC-CXU53LVmVzFekZLJQ,98
|
|
119
|
-
bluer_sbc/parts/db.py,sha256=
|
|
122
|
+
bluer_sbc/parts/db.py,sha256=Fw4CLAG3dpFCNDsK78H2QAV4nTnSmShEHVjW88wxeYg,12544
|
|
120
123
|
bluer_sbc/parts/classes/db.py,sha256=Yij--zP566wBpXFoKWsGQddrM28otTVvoez-4Qj2Rtg,6551
|
|
121
124
|
bluer_sbc/parts/classes/part.py,sha256=tKXjipFRwu0-Gc53VXivwaeqhyYr9uunG6EUzcdr_x8,2181
|
|
122
125
|
bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
126
|
bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
|
|
124
127
|
bluer_sbc/session/classes.py,sha256=6pEh-TBjekUZBbWj_zKh3LAntAoGfcMHtS2SJ77nyC8,9355
|
|
125
128
|
bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
|
|
126
|
-
bluer_sbc-9.
|
|
127
|
-
bluer_sbc-9.
|
|
128
|
-
bluer_sbc-9.
|
|
129
|
-
bluer_sbc-9.
|
|
130
|
-
bluer_sbc-9.
|
|
129
|
+
bluer_sbc-9.112.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
130
|
+
bluer_sbc-9.112.1.dist-info/METADATA,sha256=6tkzT6LlRtvrbP_zT6hIlAIzuMm886dtdzPa6xC0lns,6022
|
|
131
|
+
bluer_sbc-9.112.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
132
|
+
bluer_sbc-9.112.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
|
|
133
|
+
bluer_sbc-9.112.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|