bluer-sbc 8.177.1__py3-none-any.whl → 8.188.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.
- bluer_sbc/README.py +13 -1
- bluer_sbc/__init__.py +1 -1
- bluer_sbc/designs/bluer_swallow.py +3 -3
- bluer_sbc/designs/bryce.py +3 -1
- bluer_sbc/designs/cheshmak.py +3 -1
- bluer_sbc/designs/consts.py +1 -0
- bluer_sbc/designs/ultrasonic_sensor_tester.py +26 -0
- bluer_sbc/env.py +1 -1
- {bluer_sbc-8.177.1.dist-info → bluer_sbc-8.188.1.dist-info}/METADATA +5 -5
- {bluer_sbc-8.177.1.dist-info → bluer_sbc-8.188.1.dist-info}/RECORD +13 -11
- {bluer_sbc-8.177.1.dist-info → bluer_sbc-8.188.1.dist-info}/WHEEL +0 -0
- {bluer_sbc-8.177.1.dist-info → bluer_sbc-8.188.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_sbc-8.177.1.dist-info → bluer_sbc-8.188.1.dist-info}/top_level.txt +0 -0
bluer_sbc/README.py
CHANGED
|
@@ -14,6 +14,13 @@ from bluer_sbc.designs.bryce import items as bryce_items
|
|
|
14
14
|
from bluer_sbc.designs.bryce import marquee as bryce_marquee
|
|
15
15
|
from bluer_sbc.help.functions import help_functions
|
|
16
16
|
|
|
17
|
+
from bluer_sbc.designs.ultrasonic_sensor_tester import (
|
|
18
|
+
marquee as ultrasonic_sensor_tester_marquee,
|
|
19
|
+
)
|
|
20
|
+
from bluer_sbc.designs.ultrasonic_sensor_tester import (
|
|
21
|
+
items as ultrasonic_sensor_tester_items,
|
|
22
|
+
)
|
|
23
|
+
|
|
17
24
|
|
|
18
25
|
def build():
|
|
19
26
|
return all(
|
|
@@ -33,7 +40,8 @@ def build():
|
|
|
33
40
|
)
|
|
34
41
|
for readme in [
|
|
35
42
|
{
|
|
36
|
-
"items":
|
|
43
|
+
"items": ultrasonic_sensor_tester_marquee
|
|
44
|
+
+ cheshmak_marquee
|
|
37
45
|
+ bluer_swallow_marquee
|
|
38
46
|
+ bryce_marquee
|
|
39
47
|
+ blue_bracket_items,
|
|
@@ -51,6 +59,10 @@ def build():
|
|
|
51
59
|
"items": bryce_items,
|
|
52
60
|
"path": "./docs/bryce.md",
|
|
53
61
|
},
|
|
62
|
+
{
|
|
63
|
+
"items": ultrasonic_sensor_tester_items,
|
|
64
|
+
"path": "./docs/ultrasonic-sensor-tester.md",
|
|
65
|
+
},
|
|
54
66
|
]
|
|
55
67
|
+ [
|
|
56
68
|
{"path": f"./docs/aliases/{item}.md"}
|
bluer_sbc/__init__.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
from bluer_objects import README
|
|
2
2
|
|
|
3
|
+
from bluer_sbc.designs.consts import assets2
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
)
|
|
5
|
+
|
|
6
|
+
image_template = assets2 + "bluer-swallow/design/v3/{}?raw=true"
|
|
7
7
|
|
|
8
8
|
marquee = README.Items(
|
|
9
9
|
[
|
bluer_sbc/designs/bryce.py
CHANGED
bluer_sbc/designs/cheshmak.py
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
assets2 = "https://github.com/kamangir/assets2/blob/main/"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from bluer_objects import README
|
|
2
|
+
|
|
3
|
+
from bluer_sbc.designs.consts import assets2
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
image_template = assets2 + "ultrasonic-sensor-tester/{}?raw=true"
|
|
7
|
+
|
|
8
|
+
marquee = README.Items(
|
|
9
|
+
[
|
|
10
|
+
{
|
|
11
|
+
"name": "ultrasonic-sensor-tester",
|
|
12
|
+
"marquee": image_template.format("00.jpg"),
|
|
13
|
+
"url": "./bluer_sbc/docs/ultrasonic-sensor-tester.md",
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
items = README.Items(
|
|
19
|
+
[
|
|
20
|
+
{
|
|
21
|
+
"marquee": image_template.format(f"{index:02}.jpg"),
|
|
22
|
+
"name": "",
|
|
23
|
+
}
|
|
24
|
+
for index in range(6)
|
|
25
|
+
]
|
|
26
|
+
)
|
bluer_sbc/env.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bluer_sbc
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.188.1
|
|
4
4
|
Summary: 🌀 AI for single board computers.
|
|
5
5
|
Home-page: https://github.com/kamangir/bluer-sbc
|
|
6
6
|
Author: Arash Abadpour (Kamangir)
|
|
@@ -44,9 +44,9 @@ pip install bluer_sbc
|
|
|
44
44
|
|
|
45
45
|
| | | |
|
|
46
46
|
| --- | --- | --- |
|
|
47
|
-
| [`
|
|
48
|
-
| [`
|
|
49
|
-
| [`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) | |
|
|
47
|
+
| [`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) | [`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) | [`bluer-swallow`](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bluer-swallow.md) [](https://github.com/kamangir/bluer-sbc/blob/main/bluer_sbc/docs/bluer-swallow.md) |
|
|
48
|
+
| [`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) | [`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) |
|
|
49
|
+
| [`cube`](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) [](https://github.com/kamangir/blue-bracket/blob/main/designs/cube.md) | [`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) | |
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
@@ -57,7 +57,7 @@ pip install bluer_sbc
|
|
|
57
57
|
|
|
58
58
|
[](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)
|
|
59
59
|
|
|
60
|
-
built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.
|
|
60
|
+
built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.188.1`](https://github.com/kamangir/bluer-sbc).
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
bluer_sbc/README.py,sha256=
|
|
2
|
-
bluer_sbc/__init__.py,sha256=
|
|
1
|
+
bluer_sbc/README.py,sha256=KtBr9qrvk9UOl-BgZ6T_bHkEfkVu91Ib0CyE2vMo0XE,2374
|
|
2
|
+
bluer_sbc/__init__.py,sha256=7qIC3omTzN6OF15H4p54iBqdHkRqQnUPjQ30o7jlzWA,292
|
|
3
3
|
bluer_sbc/__main__.py,sha256=JV8oYpZDQbvcDpKJtbjU0hDeMJkzsDLGlhIWLmRpDQ4,348
|
|
4
4
|
bluer_sbc/config.env,sha256=Lp91dQZrPDtMO-87-pAw1wOqLMIYEI1MlNrXhvKMaoE,706
|
|
5
|
-
bluer_sbc/env.py,sha256=
|
|
5
|
+
bluer_sbc/env.py,sha256=saEjdk3FHmuK-WQUUpKfOatwmE93Y2Ula3rtGhRm0Zw,1745
|
|
6
6
|
bluer_sbc/host.py,sha256=RacmqxPRBQrL--JHx_Q-KyuEjEZ1kSFu4fa5pCA0CHQ,209
|
|
7
7
|
bluer_sbc/logger.py,sha256=4euXgNprDpQSuR45RXy0kWQ1LvCL_dwOi2v37hVBWvk,99
|
|
8
8
|
bluer_sbc/sample.env,sha256=mX86TGaZvbbGKbiXQdInSBu7sVvLs2IzqYaHNVl0g5M,50
|
|
@@ -46,9 +46,11 @@ bluer_sbc/algo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
46
46
|
bluer_sbc/algo/diff.py,sha256=ZCUkRgip-Uss86r--RuEwyYtFjpukM3fbY_yovXwgNw,2190
|
|
47
47
|
bluer_sbc/designs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
bluer_sbc/designs/blue_bracket.py,sha256=4p80wXEAbn4y7jXrTqK1KFrtcQYJ3zdeBiDWR8E4aCI,866
|
|
49
|
-
bluer_sbc/designs/bluer_swallow.py,sha256=
|
|
50
|
-
bluer_sbc/designs/bryce.py,sha256=
|
|
51
|
-
bluer_sbc/designs/cheshmak.py,sha256=
|
|
49
|
+
bluer_sbc/designs/bluer_swallow.py,sha256=WlVWDLmbYtYEbkBY_GXoRvILX5NCDs68FgJDb84q3F8,532
|
|
50
|
+
bluer_sbc/designs/bryce.py,sha256=6Ark2nOxLUlnrx03S9gO12oGvM6iFYmdhRfs4JXGZU0,497
|
|
51
|
+
bluer_sbc/designs/cheshmak.py,sha256=fWTqTJLYCNC0G8jqT-cJW2r8snWJrpRk5VCqjv24yKE,506
|
|
52
|
+
bluer_sbc/designs/consts.py,sha256=de1X1_0CESgSGYUI8dGh8RBoYtu_G3NrBsFvuSdHJWk,59
|
|
53
|
+
bluer_sbc/designs/ultrasonic_sensor_tester.py,sha256=sE2C6Hl9EDaNqMIQtbNU8amfevy0xZJCT8Gz2FoD9Cc,553
|
|
52
54
|
bluer_sbc/hardware/__init__.py,sha256=EW_u4fRXPVpAO47EaLZn0Vxo_rfE9a1O4cPdl_w6vOI,1421
|
|
53
55
|
bluer_sbc/hardware/adafruit_rgb_matrix.py,sha256=4xFRghBXJWkDDOhPvO-Yt6xY61D451KKxjrUL8ZxXQ8,803
|
|
54
56
|
bluer_sbc/hardware/display.py,sha256=bRjemItjmF3tJcWxP3e2lVB5Ul8br3_3PcJhfrBT7mY,3057
|
|
@@ -92,8 +94,8 @@ bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
92
94
|
bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
|
|
93
95
|
bluer_sbc/session/classes.py,sha256=6pEh-TBjekUZBbWj_zKh3LAntAoGfcMHtS2SJ77nyC8,9355
|
|
94
96
|
bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
|
|
95
|
-
bluer_sbc-8.
|
|
96
|
-
bluer_sbc-8.
|
|
97
|
-
bluer_sbc-8.
|
|
98
|
-
bluer_sbc-8.
|
|
99
|
-
bluer_sbc-8.
|
|
97
|
+
bluer_sbc-8.188.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
98
|
+
bluer_sbc-8.188.1.dist-info/METADATA,sha256=iKKSe4KepLV9fS0Zu0jlzQ6dOv2DhA49CheTOakkYtk,4439
|
|
99
|
+
bluer_sbc-8.188.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
100
|
+
bluer_sbc-8.188.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
|
|
101
|
+
bluer_sbc-8.188.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|