palletizer-full-stack 0.2.0__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.
- palletizer_full_stack-0.2.0/LICENSE +189 -0
- palletizer_full_stack-0.2.0/PKG-INFO +396 -0
- palletizer_full_stack-0.2.0/README.md +364 -0
- palletizer_full_stack-0.2.0/palletizer_full/__init__.py +37 -0
- palletizer_full_stack-0.2.0/palletizer_full/config.py +122 -0
- palletizer_full_stack-0.2.0/palletizer_full/control/__init__.py +1 -0
- palletizer_full_stack-0.2.0/palletizer_full/control/gripper_controller.py +75 -0
- palletizer_full_stack-0.2.0/palletizer_full/control/joint_synchronization.py +77 -0
- palletizer_full_stack-0.2.0/palletizer_full/control/motion_controller.py +87 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/__init__.py +1 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/communication.py +70 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/concurrency_management.py +39 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/consistency_verification.py +53 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/environment_adapter.py +53 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/execution_stack.py +70 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/fault_detection.py +38 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/hardware_synchronization.py +45 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/hazard_manager.py +129 -0
- palletizer_full_stack-0.2.0/palletizer_full/core/memory_management.py +65 -0
- palletizer_full_stack-0.2.0/palletizer_full/optimizer.py +377 -0
- palletizer_full_stack-0.2.0/palletizer_full/orchestrator.py +153 -0
- palletizer_full_stack-0.2.0/palletizer_full/perception/__init__.py +1 -0
- palletizer_full_stack-0.2.0/palletizer_full/perception/sensor_io.py +32 -0
- palletizer_full_stack-0.2.0/palletizer_full/perception/sensor_processing.py +45 -0
- palletizer_full_stack-0.2.0/palletizer_full/planning/__init__.py +1 -0
- palletizer_full_stack-0.2.0/palletizer_full/planning/mission_planner.py +74 -0
- palletizer_full_stack-0.2.0/palletizer_full/planning/pattern_manager.py +56 -0
- palletizer_full_stack-0.2.0/palletizer_full/power/__init__.py +1 -0
- palletizer_full_stack-0.2.0/palletizer_full/power/battery_management.py +65 -0
- palletizer_full_stack-0.2.0/palletizer_full/power/thermal_management.py +69 -0
- palletizer_full_stack-0.2.0/palletizer_full/robot_config.py +125 -0
- palletizer_full_stack-0.2.0/palletizer_full/run.py +69 -0
- palletizer_full_stack-0.2.0/palletizer_full_stack.egg-info/PKG-INFO +396 -0
- palletizer_full_stack-0.2.0/palletizer_full_stack.egg-info/SOURCES.txt +51 -0
- palletizer_full_stack-0.2.0/palletizer_full_stack.egg-info/dependency_links.txt +1 -0
- palletizer_full_stack-0.2.0/palletizer_full_stack.egg-info/entry_points.txt +3 -0
- palletizer_full_stack-0.2.0/palletizer_full_stack.egg-info/requires.txt +5 -0
- palletizer_full_stack-0.2.0/palletizer_full_stack.egg-info/top_level.txt +1 -0
- palletizer_full_stack-0.2.0/pyproject.toml +70 -0
- palletizer_full_stack-0.2.0/setup.cfg +4 -0
- palletizer_full_stack-0.2.0/tests/test_communication.py +31 -0
- palletizer_full_stack-0.2.0/tests/test_concurrency.py +24 -0
- palletizer_full_stack-0.2.0/tests/test_config.py +29 -0
- palletizer_full_stack-0.2.0/tests/test_fault_detection.py +36 -0
- palletizer_full_stack-0.2.0/tests/test_gripper_controller.py +38 -0
- palletizer_full_stack-0.2.0/tests/test_hazard_manager.py +59 -0
- palletizer_full_stack-0.2.0/tests/test_joint_synchronization.py +31 -0
- palletizer_full_stack-0.2.0/tests/test_memory_management.py +45 -0
- palletizer_full_stack-0.2.0/tests/test_motion_controller.py +33 -0
- palletizer_full_stack-0.2.0/tests/test_optimizer.py +70 -0
- palletizer_full_stack-0.2.0/tests/test_orchestrator.py +43 -0
- palletizer_full_stack-0.2.0/tests/test_planning.py +55 -0
- palletizer_full_stack-0.2.0/tests/test_power.py +58 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work.
|
|
38
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean any work of authorship, including
|
|
48
|
+
the original version of the Work and any modifications or additions
|
|
49
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
50
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
51
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
52
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
53
|
+
means any form of electronic, verbal, or written communication sent
|
|
54
|
+
to the Licensor or its representatives, including but not limited to
|
|
55
|
+
communication on electronic mailing lists, source code control systems,
|
|
56
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
57
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
58
|
+
excluding communication that is conspicuously marked or otherwise
|
|
59
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
60
|
+
|
|
61
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
62
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
63
|
+
subsequently incorporated within the Work.
|
|
64
|
+
|
|
65
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
66
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
67
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
68
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
69
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
70
|
+
Work and such Derivative Works in Source or Object form.
|
|
71
|
+
|
|
72
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
(except as stated in this section) patent license to make, have made,
|
|
76
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
77
|
+
where such license applies only to those patent claims licensable
|
|
78
|
+
by such Contributor that are necessarily infringed by their
|
|
79
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
80
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
81
|
+
institute patent litigation against any entity (including a
|
|
82
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
83
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
84
|
+
or contributory patent infringement, then any patent licenses
|
|
85
|
+
granted to You under this License for that Work shall terminate
|
|
86
|
+
as of the date such litigation is filed.
|
|
87
|
+
|
|
88
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
89
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
90
|
+
modifications, and in Source or Object form, provided that You
|
|
91
|
+
meet the following conditions:
|
|
92
|
+
|
|
93
|
+
(a) You must give any other recipients of the Work or
|
|
94
|
+
Derivative Works a copy of this License; and
|
|
95
|
+
|
|
96
|
+
(b) You must cause any modified files to carry prominent notices
|
|
97
|
+
stating that You changed the files; and
|
|
98
|
+
|
|
99
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
100
|
+
that You distribute, all copyright, patent, trademark, and
|
|
101
|
+
attribution notices from the Source form of the Work,
|
|
102
|
+
excluding those notices that do not pertain to any part of
|
|
103
|
+
the Derivative Works; and
|
|
104
|
+
|
|
105
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
106
|
+
distribution, then any Derivative Works that You distribute must
|
|
107
|
+
include a readable copy of the attribution notices contained
|
|
108
|
+
within such NOTICE file, excluding any notices that do not
|
|
109
|
+
pertain to any part of the Derivative Works, in at least one
|
|
110
|
+
of the following places: within a NOTICE text file distributed
|
|
111
|
+
as part of the Derivative Works; within the Source form or
|
|
112
|
+
documentation, if provided along with the Derivative Works; or,
|
|
113
|
+
within a display generated by the Derivative Works, if and
|
|
114
|
+
wherever such third-party notices normally appear. The contents
|
|
115
|
+
of the NOTICE file are for informational purposes only and
|
|
116
|
+
do not modify the License. You may add Your own attribution
|
|
117
|
+
notices within Derivative Works that You distribute, alongside
|
|
118
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
119
|
+
that such additional attribution notices cannot be construed
|
|
120
|
+
as modifying the License.
|
|
121
|
+
|
|
122
|
+
You may add Your own copyright statement to Your modifications and
|
|
123
|
+
may provide additional or different license terms and conditions
|
|
124
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
125
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
126
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
127
|
+
the conditions stated in this License.
|
|
128
|
+
|
|
129
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
130
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
131
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
132
|
+
this License, without any additional terms or conditions.
|
|
133
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
134
|
+
the terms of any separate license agreement you may have executed
|
|
135
|
+
with Licensor regarding such Contributions.
|
|
136
|
+
|
|
137
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
138
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
139
|
+
except as required for reasonable and customary use in describing the
|
|
140
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
141
|
+
|
|
142
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
143
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
144
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
145
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
146
|
+
implied, including, without limitation, any warranties or conditions
|
|
147
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
148
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
149
|
+
appropriateness of using or redistributing the Work and assume any
|
|
150
|
+
risks associated with Your exercise of permissions under this License.
|
|
151
|
+
|
|
152
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
153
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
154
|
+
unless required by applicable law (such as deliberate and grossly
|
|
155
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
156
|
+
liable to You for damages, including any direct, indirect, special,
|
|
157
|
+
incidental, or consequential damages of any character arising as a
|
|
158
|
+
result of this License or out of the use or inability to use the
|
|
159
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
160
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
161
|
+
other commercial damages or losses), even if such Contributor
|
|
162
|
+
has been advised of the possibility of such damages.
|
|
163
|
+
|
|
164
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
165
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
166
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
167
|
+
or other liability obligations and/or rights consistent with this
|
|
168
|
+
License. However, in accepting such obligations, You may act only
|
|
169
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
170
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
171
|
+
defend, and hold each Contributor harmless for any liability
|
|
172
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
173
|
+
of your accepting any such warranty or additional liability.
|
|
174
|
+
|
|
175
|
+
END OF TERMS AND CONDITIONS
|
|
176
|
+
|
|
177
|
+
Copyright 2024-2026 iceccarelli
|
|
178
|
+
|
|
179
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
180
|
+
you may not use this file except in compliance with the License.
|
|
181
|
+
You may obtain a copy of the License at
|
|
182
|
+
|
|
183
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
184
|
+
|
|
185
|
+
Unless required by applicable law or agreed to in writing, software
|
|
186
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
187
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
188
|
+
See the License for the specific language governing permissions and
|
|
189
|
+
limitations under the License.
|
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: palletizer-full-stack
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: The open-source software foundation for high-throughput end-of-line palletising cells.
|
|
5
|
+
Author: iceccarelli
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/iceccarelli/palletizer
|
|
8
|
+
Project-URL: Repository, https://github.com/iceccarelli/palletizer
|
|
9
|
+
Project-URL: Issues, https://github.com/iceccarelli/palletizer/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/iceccarelli/palletizer/blob/main/CHANGELOG.md
|
|
11
|
+
Keywords: palletizer,palletiser,robotics,industrial-automation,robot-arm,end-of-line,pick-and-place,open-source
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Manufacturing
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Scientific/Engineering
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Requires-Python: >=3.11
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
License-File: LICENSE
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
29
|
+
Requires-Dist: pytest-cov>=4.0; extra == "dev"
|
|
30
|
+
Requires-Dist: ruff>=0.4.0; extra == "dev"
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# Palletizer OS
|
|
34
|
+
|
|
35
|
+
**The Open-Source Foundation + Enterprise SaaS Platform for Intelligent, High-Throughput Palletizing Cells**
|
|
36
|
+
|
|
37
|
+
*One codebase. Any robot arm. Any gripper. Any factory. Deploy in hours. Scale to global fleets. Capture massive ROI.*
|
|
38
|
+
|
|
39
|
+
[](https://www.python.org/downloads/)
|
|
40
|
+
[](LICENSE)
|
|
41
|
+
[](https://github.com/psf/black)
|
|
42
|
+
[](https://github.com/iceccarelli/palletizer/actions)
|
|
43
|
+
[](https://github.com/iceccarelli/palletizer)
|
|
44
|
+
[](https://github.com/iceccarelli/palletizer)
|
|
45
|
+
[](https://discord.gg/palletizer)
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+

|
|
50
|
+
|
|
51
|
+
*Production palletizing cell powered by Palletizer OS. Hardware-agnostic. Safety-first. Ready for mixed-SKU intelligence.*
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## The Billion-Dollar Opportunity We're Seizing
|
|
56
|
+
|
|
57
|
+
Palletizing sits at the critical junction of manufacturing and logistics. It accounts for a huge share of industrial robot deployments worldwide, yet most factories and warehouses still do it manually or with brittle, custom-coded systems.
|
|
58
|
+
|
|
59
|
+
**Market Reality (2025-2026 forecasts):**
|
|
60
|
+
- Palletizing robots / robotic palletizers market valued in the **$2–5+ billion** range and expanding at **5–10%+ CAGR**, with some segments and broader warehouse robotics hitting **17%+ CAGR** (reaching $24B+ by 2031).
|
|
61
|
+
- Warehouse automation overall exploding due to e-commerce SKU proliferation, same-day delivery pressure, labor shortages, and reshoring.
|
|
62
|
+
- **Manual palletizing pain is expensive**: High repetitive-strain injuries (major workers' comp driver), throughput capped at ~15–25 pallets per person-hour, chronic recruiting/turnover issues, inconsistent stacks causing product damage and unstable loads in transit.
|
|
63
|
+
|
|
64
|
+
**Automated ROI is proven**: Most deployments pay back in **12–24 months** through 30–60%+ labor cost reduction, 50–100%+ throughput gains, 24/7 operation, near-elimination of stacking errors, and dramatically lower injury rates. The companies that move fastest win.
|
|
65
|
+
|
|
66
|
+
**The #1 hidden bottleneck (and highest-margin opportunity)**: Software.
|
|
67
|
+
|
|
68
|
+
Every integrator and OEM rebuilds the same control loops, safety logic, planning algorithms, sensor fusion, telemetry, and integration glue from scratch. Result? Long deployment cycles (weeks to months), high project risk/cost, vendor lock-in, and painful maintenance when SKUs change or hardware evolves. High-mix / mixed-case palletizing (the future of e-comm and flexible manufacturing) is especially brutal without smart software.
|
|
69
|
+
|
|
70
|
+
**Palletizer OS exists to kill that friction forever.**
|
|
71
|
+
|
|
72
|
+
We deliver a **modular, deterministic, hardware-agnostic, safety-certified-ready software foundation** that lets teams go from "idea" to "running production cell" in hours/days instead of weeks/months. Then we layer on the enterprise SaaS, AI optimization, certified connectors, compliance tooling, and fleet orchestration that serious operators will happily pay premium recurring revenue for.
|
|
73
|
+
|
|
74
|
+
This is how an open-source project becomes the category king — and a high-margin, defensible, recurring-revenue business serving exactly the manufacturers, 3PLs, integrators, and OEMs who have the cash and the mandate to invest in automation that actually delivers ROI.
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## The Problem We Ruthlessly Solve
|
|
79
|
+
|
|
80
|
+
Traditional approaches fail at scale:
|
|
81
|
+
|
|
82
|
+
- **Custom code hell** — Every cell is a snowflake. Safety, fault handling, trajectory planning, gripper logic, and WMS integration rewritten repeatedly.
|
|
83
|
+
- **Integration tax** — $50k–$500k+ per cell in services before you even run one pallet. Long sales-to-go-live cycles kill ROI.
|
|
84
|
+
- **Inflexibility** — Proprietary stacks or simple rule-based systems choke on mixed SKUs, variable box sizes/weights, or new product introductions.
|
|
85
|
+
- **Visibility & control gaps** — No unified way to monitor, optimize, or update dozens/hundreds of cells across plants.
|
|
86
|
+
- **Certification & liability friction** — Safety validation and audit trails are painful without a designed-for-purpose foundation.
|
|
87
|
+
- **Talent & maintenance burden** — Hard to find/retain people who understand the full stack you just built.
|
|
88
|
+
|
|
89
|
+
**Result**: Many companies delay automation or accept mediocre ROI. Integrators stay small because every project is bespoke and risky.
|
|
90
|
+
|
|
91
|
+
Palletizer OS flips the script.
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## The Solution: Palletizer Full Stack + Enterprise Platform
|
|
96
|
+
|
|
97
|
+
**One integrated, extensible system** designed from day one for real factories:
|
|
98
|
+
|
|
99
|
+
### Open Core (Apache 2.0 — Free Forever)
|
|
100
|
+
The reliable engine you can inspect, modify, deploy, and trust.
|
|
101
|
+
|
|
102
|
+
- **PalletiserOrchestrator** — Hard real-time deterministic control loop (default 50 Hz, configurable). Poll sensors → update power/thermal → evaluate hazards → execute tasks → publish telemetry. Always safe.
|
|
103
|
+
- **Core Services** — Memory, concurrency, fault detection, hazard monitoring, communication, execution stack, environment adaptation, hardware sync, consistency verification.
|
|
104
|
+
- **Control Layer** — Abstract `RobotInterface` + `Gripper` + joint sync. Retry logic, pressure/force feedback. Works with any arm.
|
|
105
|
+
- **Perception** — Sensor I/O + fusion foundation. Box detection, proximity, weight. Ready for depth cameras and advanced CV.
|
|
106
|
+
- **Planning** — Pattern management + mission sequencing. Extensible for your rules or our upcoming AI optimizer.
|
|
107
|
+
- **Power Management** — Battery SoC tracking, thermal monitoring with hysteresis, energy-aware behaviors.
|
|
108
|
+
- **Examples & Sim** — Run instantly with dummy robot. Perfect for CI, training, and rapid prototyping.
|
|
109
|
+
|
|
110
|
+
**Integrate any hardware in <100 lines of code.** Pass your `RobotInterface` implementation — the rest of the stack is unchanged. Same for grippers and sensors.
|
|
111
|
+
|
|
112
|
+
### Commercial Layers (Where Paying Customers Win Big)
|
|
113
|
+
- **Certified Robot & Gripper Connectors** (Pro/Enterprise) — Validated performance, safety margins, and SLAs for UR, Fanuc, ABB, KUKA, Yaskawa, and more. Plus vacuum/mechanical gripper profiles with pressure feedback.
|
|
114
|
+
- **AI-Powered Mixed Pallet Optimization** (Roadmap flagship) — Automatically generate stable, high-density, crush-safe, weight-balanced patterns for mixed SKUs. Upload your box database + photos → production-ready program. 90%+ volume utilization common.
|
|
115
|
+
- **Palletizer Cloud Gateway (SaaS)** — The fleet operating system. Real-time multi-cell monitoring, telemetry aggregation, OTA updates, remote diagnostics, digital twin sync, role-based access, audit logs. Per-cell monthly subscription. This is the sticky, high-margin recurring revenue engine.
|
|
116
|
+
- **Compliance & Audit Packs** — ISO 10218 / TS 15066, functional safety artifacts, traceability for food/pharma/automotive, validation documentation.
|
|
117
|
+
- **Digital Twin & Simulation** — Physics-accurate offline programming, what-if analysis, operator training, and sim-to-real transfer. Reduces risk to near zero.
|
|
118
|
+
- **Marketplace & Ecosystem** — Buy/sell optimized patterns, gripper configs, and integrations. Hardware certification program for partners.
|
|
119
|
+
|
|
120
|
+
**Result**: Open core for speed and customization. Enterprise layers for trust, scale, and outcomes. You pay only for what accelerates your ROI.
|
|
121
|
+
|
|
122
|
+

|
|
123
|
+
|
|
124
|
+
*This is the dashboard your operations and maintenance teams will live in. One pane of glass for the entire palletizing operation.*
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## See It In Action — Perfect Visuals & Live Demos
|
|
129
|
+
|
|
130
|
+

|
|
131
|
+
|
|
132
|
+
*No more hand-crafted patterns or trial-and-error. Our engine (and upcoming AI agent) delivers production-ready, physically validated stacks automatically.*
|
|
133
|
+
|
|
134
|
+
**Live Demos & Getting Hands-On**
|
|
135
|
+
- **Instant local demo** (simulated robot + perception): `python -m palletizer_full.run --sim` — full control loop, telemetry, and a complete palletising cycle in seconds.
|
|
136
|
+
- **Hardware integration examples**: `examples/basic_palletise.py`, `custom_gripper.py` (vacuum with pressure feedback), `monitoring_telemetry.py`.
|
|
137
|
+
- **Docker one-liner** for reproducible environments.
|
|
138
|
+
- **Reference implementations** for popular cobots coming in examples/ and certified connectors (Pro).
|
|
139
|
+
- **YouTube / video walkthroughs** (production in progress — subscribe for launch).
|
|
140
|
+
|
|
141
|
+
Run the test suite with coverage: `pytest --cov=palletizer_full tests/`
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Lightning Quick Start (Production Pilot in < 60 Minutes)
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
# Clone
|
|
149
|
+
git clone https://github.com/iceccarelli/palletizer.git
|
|
150
|
+
cd palletizer
|
|
151
|
+
|
|
152
|
+
# Install with all dev + demo extras
|
|
153
|
+
pip install -e ".[dev]"
|
|
154
|
+
|
|
155
|
+
# Run the full simulated end-to-end demo (instant gratification)
|
|
156
|
+
python -m palletizer_full.run --sim --pattern mixed_sku_demo
|
|
157
|
+
|
|
158
|
+
# Or spin up the complete stack in Docker (recommended for evaluation)
|
|
159
|
+
docker compose up --build
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
**Configuration is 100% via environment variables or `config.yaml`** — no code changes needed to adapt cycle rate, safety margins, battery thresholds, environment profile (factory vs lab noise), sim vs hardware mode, etc.
|
|
163
|
+
|
|
164
|
+
See `config.py`, `.env.example`, and `robot_config.py` for the complete list.
|
|
165
|
+
|
|
166
|
+
**For your robot**: Subclass `RobotInterface` (4–6 methods). Examples for several arms included. The orchestrator, safety layer, planner, and telemetry work unchanged.
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## Architecture — Modular, Auditable, Future-Proof
|
|
171
|
+
|
|
172
|
+
The stack is deliberately layered so you can replace or extend any piece without touching the others. Interfaces are strict and well-documented.
|
|
173
|
+
|
|
174
|
+
```mermaid
|
|
175
|
+
flowchart TB
|
|
176
|
+
subgraph Orchestrator["PalletiserOrchestrator - Deterministic 50-100 Hz Control Loop"]
|
|
177
|
+
direction TB
|
|
178
|
+
A[Poll Sensors & Fuse Data] --> B[Update Power, Thermal, Battery]
|
|
179
|
+
B --> C[Evaluate All Hazards & Faults]
|
|
180
|
+
C --> D{ Safe to Proceed? }
|
|
181
|
+
D -->|Yes| E[Planner Dispatches Next Pick/Place]
|
|
182
|
+
D -->|No| F[Enter Safe State + Alert]
|
|
183
|
+
E --> G[Execute via Control Layer + Feedback]
|
|
184
|
+
F --> G
|
|
185
|
+
G --> H[Publish Rich Telemetry]
|
|
186
|
+
H --> A
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
subgraph Core["Core Services (Always On)"]
|
|
190
|
+
CoreMem[Memory & State Mgmt]
|
|
191
|
+
Hazard[Hazard Monitor + Safety Logic]
|
|
192
|
+
Fault[Fault Detection & Recovery]
|
|
193
|
+
Conc[Concurrency & Scheduling]
|
|
194
|
+
Comm[Communication Bus]
|
|
195
|
+
Exec[Execution Stack]
|
|
196
|
+
Env[Environment Adapter]
|
|
197
|
+
Verify[Consistency Verification]
|
|
198
|
+
Sync[Hardware Sync]
|
|
199
|
+
end
|
|
200
|
+
|
|
201
|
+
subgraph Control["Control Abstraction"]
|
|
202
|
+
RobotIface["RobotInterface (any arm)"]
|
|
203
|
+
JointSync[Joint Trajectory Sync]
|
|
204
|
+
GripperCtrl[Gripper Control + Feedback]
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
subgraph Perception["Perception Layer"]
|
|
208
|
+
SensorIO[Sensor I/O]
|
|
209
|
+
Fusion[Data Fusion]
|
|
210
|
+
BoxDet[Box / Object Detection]
|
|
211
|
+
ProxWeight[Proximity + Weight]
|
|
212
|
+
end
|
|
213
|
+
|
|
214
|
+
subgraph Planning["Planning & Optimization"]
|
|
215
|
+
Patterns[Pattern Library & Validation]
|
|
216
|
+
Mission[Mission & Order Sequencer]
|
|
217
|
+
AIPlanner["AI Mixed-Pallet Optimizer (Pro)"]
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
subgraph Power["Power & Thermal"]
|
|
221
|
+
Battery[Battery SoC Tracking]
|
|
222
|
+
Thermal[Thermal Monitoring + Control]
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
subgraph Enterprise["Enterprise Extensions (Paid)"]
|
|
226
|
+
Certified[Certified Connectors + SLAs]
|
|
227
|
+
Compliance[ISO / Safety Packs + Audit]
|
|
228
|
+
Twin[Digital Twin Sync]
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
subgraph Gateway["Palletizer Cloud Gateway (SaaS)"]
|
|
232
|
+
Fleet[Multi-Cell Orchestration]
|
|
233
|
+
TelemetryAgg[Telemetry Aggregation & Analytics]
|
|
234
|
+
OTA[OTA Updates & Remote Ops]
|
|
235
|
+
Dashboard[Web Command Center]
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
Orchestrator --- Core
|
|
239
|
+
Orchestrator --- Control
|
|
240
|
+
Orchestrator --- Perception
|
|
241
|
+
Orchestrator --- Planning
|
|
242
|
+
Orchestrator --- Power
|
|
243
|
+
Enterprise -.-> Orchestrator
|
|
244
|
+
Gateway -.-> Orchestrator
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
**Package Overview**
|
|
248
|
+
|
|
249
|
+
| Package | Purpose | Maturity | Notes |
|
|
250
|
+
|---------------|----------------------------------------------|-------------------|-------|
|
|
251
|
+
| **core/** | Foundational services, safety, execution | Production-ready | Do not modify lightly |
|
|
252
|
+
| **control/** | Robot & gripper abstraction + low-level motion | Production-ready | Implement thin adapter for new hardware |
|
|
253
|
+
| **perception/** | Sensor acquisition, fusion, detection | Foundational + Extensible | Plug in your cameras/CV; vision module coming |
|
|
254
|
+
| **planning/** | Stacking patterns, sequencing, optimization | Extensible + AI v2 roadmap | Your rules or our AI engine |
|
|
255
|
+
| **power/** | Energy & thermal intelligence | Production-ready | Critical for mobile/autonomous cells |
|
|
256
|
+
| **enterprise/** | Certified connectors, compliance, twin | Reserved for paid | Unlocks certified performance & legal peace of mind |
|
|
257
|
+
| **gateway/** | Fleet SaaS control plane | SaaS preview | The recurring revenue & scale layer |
|
|
258
|
+
|
|
259
|
+
All communication through clean interfaces. Swap planning, perception, or even the orchestrator loop if you have better ideas.
|
|
260
|
+
|
|
261
|
+
---
|
|
262
|
+
|
|
263
|
+
## Who This Is Built For (And Who Will Pay)
|
|
264
|
+
|
|
265
|
+
**Manufacturers & 3PLs with real budgets** who want:
|
|
266
|
+
- Faster time-to-value on automation projects
|
|
267
|
+
- Lower total cost of ownership and higher, more predictable ROI
|
|
268
|
+
- Ability to handle high-mix production without constant reprogramming
|
|
269
|
+
- Unified visibility and control across multiple lines and sites
|
|
270
|
+
- A partner who understands both the technical and commercial realities
|
|
271
|
+
|
|
272
|
+
**System Integrators & Robot OEMs** who want to:
|
|
273
|
+
- Bid and win more projects with lower risk and higher margins
|
|
274
|
+
- Standardize on a proven, auditable base layer
|
|
275
|
+
- Differentiate with their domain expertise instead of rebuilding plumbing every time
|
|
276
|
+
- Offer white-label or co-branded solutions
|
|
277
|
+
|
|
278
|
+
**Forward-leaning automation, controls, and digital transformation teams** tired of vendor lock-in and custom snowflakes.
|
|
279
|
+
|
|
280
|
+
If you have the cash and the mandate to invest in automation that actually moves the needle on cost, throughput, safety, and scalability — this platform was built for you.
|
|
281
|
+
|
|
282
|
+
---
|
|
283
|
+
|
|
284
|
+
## Commercial Model — Transparent, Aligned, High-Margin
|
|
285
|
+
|
|
286
|
+
**Open Core (Free)**: Full access to the foundation. Use it, modify it, embed it, contribute to it. Perfect for pilots, education, research, and cost-conscious integrators.
|
|
287
|
+
|
|
288
|
+
**Palletizer Pro / Enterprise License** (Annual per site or per cell): Unlocks certified connectors, advanced AI planning, compliance packs, priority support, SLAs, and early roadmap access. This is the "buy once, deploy confidently" tier.
|
|
289
|
+
|
|
290
|
+
**Palletizer Cloud (SaaS — recurring)**: The fleet operating system. Monitor, optimize, update, and support your entire palletizing operation from a single pane of glass. Tiered pricing (starter / growth / enterprise) based on number of cells and features. High gross margins, extremely sticky, and expands naturally as you automate more.
|
|
291
|
+
|
|
292
|
+
**Professional Services & Training**: Jumpstart packages, custom development, safety case support, on-site or remote training for engineers and technicians. High utilization, referenceable wins, and land-and-expand fuel.
|
|
293
|
+
|
|
294
|
+
**Ecosystem & Marketplace**: Hardware certification (co-sell / lead gen), pattern & integration marketplace (transaction fees), opt-in aggregate data insights.
|
|
295
|
+
|
|
296
|
+
**Why this model prints money long-term**:
|
|
297
|
+
- Open source = massive distribution, low CAC, rapid feedback & innovation flywheel.
|
|
298
|
+
- Enterprise features & SaaS = trust, scale, and predictable high-margin recurring revenue from exactly the customers who can afford it and see clear ROI.
|
|
299
|
+
- Services = fast cash flow + deep relationships + upsell path.
|
|
300
|
+
- We win when customers process more pallets profitably and at higher reliability. Aligned incentives.
|
|
301
|
+
|
|
302
|
+
Typical large deployment easily justifies 5-figure+ annual spend. Fleets of 10–100+ cells become 6–7 figure accounts quickly. Combined with services and ecosystem, this platform has a clear, credible path to substantial ARR and category leadership.
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## Roadmap — Aggressive, AI-Native, Community-Influenced
|
|
307
|
+
|
|
308
|
+
We ship in public and invite paying customers and contributors to shape direction.
|
|
309
|
+
|
|
310
|
+
**Immediate / Q3 2026**
|
|
311
|
+
- Production hardening of core + examples
|
|
312
|
+
- First vision module (depth camera box detection + basic pose)
|
|
313
|
+
- Certified connectors for 2–3 popular cobot/industrial arms (UR first)
|
|
314
|
+
- Web dashboard MVP (self-hosted + Cloud preview)
|
|
315
|
+
- Full mixed-SKU stable palletizing demonstration
|
|
316
|
+
- Security audit, SBOM, vulnerability scanning
|
|
317
|
+
|
|
318
|
+
**Q4 2026 – H1 2027**
|
|
319
|
+
- AI mixed-pallet pattern generator (upload SKU database + images → optimized, validated program)
|
|
320
|
+
- Digital twin integration (NVIDIA Isaac / equivalent or open physics)
|
|
321
|
+
- Native OPC UA, MQTT, and industrial protocol support
|
|
322
|
+
- Multi-cell coordination & orchestration GA
|
|
323
|
+
- First compliance & audit packs (food/pharma ready)
|
|
324
|
+
- Public Palletizer Cloud beta with usage-based billing options
|
|
325
|
+
|
|
326
|
+
**2027+**
|
|
327
|
+
- Fine-tuned foundation / VLA models for palletizing tasks (few-shot new SKU learning)
|
|
328
|
+
- AR-assisted remote maintenance & training overlays
|
|
329
|
+
- Global multi-tenant fleet OS with advanced analytics & predictive maintenance
|
|
330
|
+
- Energy & sustainability optimizer (kWh and CO₂ per pallet)
|
|
331
|
+
- Full marketplace launch + partner certification program
|
|
332
|
+
- Edge inference packs for fully autonomous cells
|
|
333
|
+
|
|
334
|
+
**The vision**: Become the de-facto operating system layer for palletizing cells worldwide — the trusted, intelligent control plane that makes high-performance automation accessible, reliable, and continuously improving.
|
|
335
|
+
|
|
336
|
+
We are explicitly building for the AI + automation wave that is coming. Our modular architecture lets us plug in the best models and simulators faster than anyone locked into monolithic proprietary stacks.
|
|
337
|
+
|
|
338
|
+
---
|
|
339
|
+
|
|
340
|
+
## Trust, Security & Production Readiness
|
|
341
|
+
|
|
342
|
+
- Apache 2.0 license — commercial friendly, no copyleft surprises.
|
|
343
|
+
- Comprehensive test suite + CI/CD + coverage targets.
|
|
344
|
+
- Designed for functional safety argumentation and certification (we provide the artifacts and support).
|
|
345
|
+
- Clear separation of open core vs enterprise extensions.
|
|
346
|
+
- Telemetry is opt-in and anonymized by default for product improvement.
|
|
347
|
+
- We take security seriously (SBOM, dependency scanning, responsible disclosure).
|
|
348
|
+
|
|
349
|
+
Benchmarks, performance data, and real hardware validation reports will be published as they become available.
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
353
|
+
## Contributing & Community
|
|
354
|
+
|
|
355
|
+
We welcome robotics engineers, controls experts, vision specialists, safety practitioners, and anyone who wants industrial automation software to be better.
|
|
356
|
+
|
|
357
|
+
Read [CONTRIBUTING.md](CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md).
|
|
358
|
+
|
|
359
|
+
- Open issues and discussions are the primary roadmap input.
|
|
360
|
+
- Significant contributors and enterprise partners get early access and influence.
|
|
361
|
+
- Certified Partner program for integrators coming soon (training + co-sell benefits).
|
|
362
|
+
|
|
363
|
+
Join the Discord for real-time discussion.
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## License
|
|
368
|
+
|
|
369
|
+
This project is licensed under the **Apache License 2.0**. See [LICENSE](LICENSE) for details.
|
|
370
|
+
|
|
371
|
+
The open core will always remain freely available under this license. Enterprise extensions, Cloud services, certified connectors, and support are commercial offerings.
|
|
372
|
+
|
|
373
|
+
---
|
|
374
|
+
|
|
375
|
+
## Start Capturing Your ROI Today
|
|
376
|
+
|
|
377
|
+
**Developers & Curious Engineers**
|
|
378
|
+
Star the repo • Run the demo • Open an issue or PR • Join Discord
|
|
379
|
+
|
|
380
|
+
**Companies Ready to Deploy or Pilot**
|
|
381
|
+
Run the quick start above • Book a technical discovery & ROI discussion call (link in repo or contact) • Request Pro / Cloud early access or a reference integration on your hardware
|
|
382
|
+
|
|
383
|
+
**Integrators, OEMs & Partners**
|
|
384
|
+
Explore partnership & certification opportunities • White-label / embedding options available
|
|
385
|
+
|
|
386
|
+
**This is not another academic robotics project.**
|
|
387
|
+
This is the production foundation and commercial platform for the palletizing automation wave that is already underway and accelerating fast.
|
|
388
|
+
|
|
389
|
+
The companies that standardize on flexible, intelligent, open-yet-enterprise software will deploy faster, operate more profitably, and scale without the usual pain.
|
|
390
|
+
|
|
391
|
+
**Palletizer OS is how we make that future real — and build a category-defining, high-ROI business in the process.**
|
|
392
|
+
|
|
393
|
+
Let's go build it.
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
**Palletizer OS — The operating system for profitable palletizing at scale.**
|