bluer-sbc 9.101.1__py3-none-any.whl → 9.319.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.
Files changed (65) hide show
  1. bluer_sbc/.abcli/sbc/parts/edit.sh +5 -0
  2. bluer_sbc/.abcli/sbc/parts/open.sh +5 -0
  3. bluer_sbc/.abcli/sbc/parts.sh +1 -1
  4. bluer_sbc/.abcli/seed/rpi_64_bit.sh +36 -0
  5. bluer_sbc/.abcli/tests/help.sh +2 -0
  6. bluer_sbc/README/design.py +40 -24
  7. bluer_sbc/README/designs/__init__.py +27 -53
  8. bluer_sbc/README/designs/adapter_bus.py +59 -0
  9. bluer_sbc/README/designs/anchor/__init__.py +15 -0
  10. bluer_sbc/README/designs/anchor/body/docs.py +20 -0
  11. bluer_sbc/README/designs/anchor/docs.py +16 -0
  12. bluer_sbc/README/designs/anchor/items.py +10 -0
  13. bluer_sbc/README/designs/anchor/parts.py +54 -0
  14. bluer_sbc/README/designs/battery_bus/__init__.py +15 -0
  15. bluer_sbc/README/designs/battery_bus/body/docs.py +20 -0
  16. bluer_sbc/README/designs/battery_bus/body/li_ion.py +20 -0
  17. bluer_sbc/README/designs/battery_bus/body/sla.py +17 -0
  18. bluer_sbc/README/designs/battery_bus/docs.py +17 -0
  19. bluer_sbc/README/designs/battery_bus/items.py +17 -0
  20. bluer_sbc/README/designs/battery_bus/parts.py +19 -0
  21. bluer_sbc/README/designs/cheshmak/__init__.py +14 -0
  22. bluer_sbc/README/designs/cheshmak/body/docs.py +23 -0
  23. bluer_sbc/README/designs/cheshmak/body/v1.py +18 -0
  24. bluer_sbc/README/designs/cheshmak/docs.py +19 -0
  25. bluer_sbc/README/designs/cheshmak/items.py +10 -0
  26. bluer_sbc/README/designs/cheshmak/operation.py +5 -0
  27. bluer_sbc/README/designs/cheshmak/parts.py +28 -0
  28. bluer_sbc/README/designs/cheshmak/validations.py +14 -0
  29. bluer_sbc/README/designs/nafha.py +46 -3
  30. bluer_sbc/README/designs/pwm_generator.py +71 -0
  31. bluer_sbc/README/designs/regulated_bus.py +79 -0
  32. bluer_sbc/README/designs/shelter.py +42 -9
  33. bluer_sbc/README/designs/swallow/__init__.py +20 -0
  34. bluer_sbc/README/designs/swallow/consts.py +7 -0
  35. bluer_sbc/README/designs/swallow/docs.py +24 -0
  36. bluer_sbc/README/designs/swallow/history.py +34 -0
  37. bluer_sbc/{designs → README/designs}/swallow/parts.py +3 -2
  38. bluer_sbc/README/designs/swallow_head/__init__.py +22 -0
  39. bluer_sbc/README/designs/swallow_head/docs.py +24 -0
  40. bluer_sbc/README/designs/swallow_head/history.py +21 -0
  41. bluer_sbc/{designs → README/designs}/swallow_head/parts.py +11 -12
  42. bluer_sbc/README/designs/{x.py → template.py} +12 -0
  43. bluer_sbc/README/designs/ultrasonic_sensor_tester.py +8 -0
  44. bluer_sbc/README/parts.py +13 -1
  45. bluer_sbc/README/root.py +12 -6
  46. bluer_sbc/__init__.py +1 -1
  47. bluer_sbc/config.env +1 -1
  48. bluer_sbc/env.py +4 -0
  49. bluer_sbc/help/parts.py +33 -1
  50. bluer_sbc/parts/db.py +242 -13
  51. {bluer_sbc-9.101.1.dist-info → bluer_sbc-9.319.1.dist-info}/METADATA +6 -5
  52. {bluer_sbc-9.101.1.dist-info → bluer_sbc-9.319.1.dist-info}/RECORD +58 -32
  53. bluer_sbc/README/designs/battery_bus.py +0 -34
  54. bluer_sbc/README/designs/bryce.py +0 -20
  55. bluer_sbc/README/designs/cheshmak.py +0 -20
  56. bluer_sbc/README/designs/swallow.py +0 -21
  57. bluer_sbc/README/designs/swallow_head.py +0 -21
  58. bluer_sbc/designs/battery_bus/parts.py +0 -6
  59. bluer_sbc/designs/swallow_head/__init__.py +0 -0
  60. /bluer_sbc/{designs → README/designs/anchor/body}/__init__.py +0 -0
  61. /bluer_sbc/{designs/battery_bus → README/designs/battery_bus/body}/__init__.py +0 -0
  62. /bluer_sbc/{designs/swallow → README/designs/cheshmak/body}/__init__.py +0 -0
  63. {bluer_sbc-9.101.1.dist-info → bluer_sbc-9.319.1.dist-info}/WHEEL +0 -0
  64. {bluer_sbc-9.101.1.dist-info → bluer_sbc-9.319.1.dist-info}/licenses/LICENSE +0 -0
  65. {bluer_sbc-9.101.1.dist-info → bluer_sbc-9.319.1.dist-info}/top_level.txt +0 -0
@@ -1,20 +0,0 @@
1
- from bluer_objects import README
2
- from bluer_objects.README.items import ImageItems
3
-
4
- from bluer_sbc.README.designs.consts import assets2
5
-
6
- image_template = assets2 + "cheshmak/{}?raw=true"
7
-
8
- marquee = README.Items(
9
- [
10
- {
11
- "name": "cheshmak",
12
- "marquee": image_template.format("01.png"),
13
- "url": "./bluer_sbc/docs/cheshmak.md",
14
- }
15
- ]
16
- )
17
-
18
- items = ImageItems(
19
- {image_template.format(f"{index+1:02}.png"): "" for index in range(1)}
20
- )
@@ -1,21 +0,0 @@
1
- from bluer_objects import README
2
- from bluer_objects.README.items import ImageItems
3
-
4
- from bluer_sbc.README.designs.consts import assets2
5
-
6
-
7
- image_template = assets2 + "swallow/design/v5/{}?raw=true"
8
-
9
- marquee = README.Items(
10
- [
11
- {
12
- "name": "swallow",
13
- "marquee": image_template.format("01.jpg"),
14
- "url": "./bluer_sbc/docs/swallow.md",
15
- }
16
- ]
17
- )
18
-
19
- items = ImageItems(
20
- {image_template.format(f"{index+1:02}.jpg"): "" for index in range(6)}
21
- )
@@ -1,21 +0,0 @@
1
- from bluer_objects import README
2
- from bluer_objects.README.items import ImageItems
3
-
4
- from bluer_sbc.README.designs.consts import assets2
5
-
6
-
7
- image_template = assets2 + "swallow/design/head-v1/{}?raw=true"
8
-
9
- marquee = README.Items(
10
- [
11
- {
12
- "name": "swallow head",
13
- "marquee": image_template.format("01.jpg"),
14
- "url": "./bluer_sbc/docs/swallow-head.md",
15
- }
16
- ]
17
- )
18
-
19
- items = ImageItems(
20
- {image_template.format(f"{index+1:02}.jpg"): "" for index in range(6)}
21
- )
@@ -1,6 +0,0 @@
1
- dict_of_parts = {
2
- "SLA-Battery": "",
3
- "on-off-switch": "",
4
- "charging-port": "",
5
- "dsn-vc288": "",
6
- }
File without changes