May 22, 2025

Embedded Software in arculees: Driving Communication & Control

An Autonomous Mobile Robot (AMR) has various components that work together to ensure smooth and efficient operation. But for these components to communicate and function together seamlessly, the robot relies on something crucial: an embedded system. In this blog post, Kayas Ahmed, Embedded Software Engineer at arculus, explains the essential functions and purpose of the embedded software in AMRs.

What is Embedded Software?

Embedded software is purpose-built code that interfaces directly with a robot’s hardware components, like sensors and actuators. Unlike general-purpose software that can handle a variety of tasks, embedded software is designed to perform one specific function with a high degree of precision and reliability. Its job is to ensure that the robot’s hardware behaves exactly as expected, every time.

Kayas Ahmed, Embedded Software Engineer at arculus, explains the role of embedded systems in arculess (our AMRs), “The embedded software communicates on interfaces, on all the components, all the sensors, on the Printed Circuit Board (PCB) in the robot. In the system hierarchy, embedded comes right after the robot's electronics, making it alive. For example, a visible function of the embedded is to control features like LED blinking and manage motor control.”

Open robot
In the arculee tech stack, embedded software comes right after the electronics, working closely with it

How it All Works

The embedded software ensures a predictable response time and executes its specific function by ensuring that all the different components, such as sensors, motors, and processors, communicate effectively. That is where communication protocols come into play.

Communication Protocols

Serial communication protocols are a set of rules that define how devices transmit data to each other. These protocols enable the embedded software to send and receive data from the various components of the robot in real-time.

The arculee uses different serial communication protocols to exchange data between the sensors, motors, and the Linux module, which acts as the main processor running on the PCB. Kayas mentions the following protocols:

  • Universal Asynchronous Receiver/Transmitter (UART): This protocol is for communicating with the Linux module, which serves as the central processing unit of the robot. It’s lightweight, fast, and ideal for simple, direct communication.
  • Inter-Integrated Circuit (I2C): This is a synchronous protocol for connecting low-speed devices, such as sensors.
  • Serial Peripheral Interface (SPI): It is a synchronous serial communication protocol for transferring data between sensors, microcontrollers, and peripherals.
  • Controller Area Network (CAN): Originally developed for the automotive industry, CAN is ideal for robust, real-time communication in noisy environments. It’s functions involve coordinating communication between various control units, such as those managing motor functions.

Each of these protocols has its own strengths, and the embedded system knows which one to use based on the component it is interfacing with. This layered, modular approach enables the arculee to maintain smooth data flow between all its critical systems.

Managing Complex Processes

The arculee performs complex processes, which require efficient movement of motors and the processing of data from multiple sensors. So, how does embedded software handle it all?

“To handle complex tasks, we split the problem into smaller tasks,” explains Kayas. “We use an open-source, real-time operating system called FreeRTOS, which allows us to run multiple tasks concurrently on a single microcontroller. For example, in managing LED, the task is simplified and divided into: 1. requesting a new LED pattern and 2. applying the pattern in real-time. This division of labour ensures that each part of the system operates smoothly without interference.”

The embedded software manages the LED lights on the arculees 

In the arculee, this distribution of tasks across multiple microcontrollers ensures that the system is more efficient and can handle the intricacies of motor control, sensor data processing, and other essential tasks without interference.

The Time Challenge

One of the biggest challenges in embedded software is adhering to strict timing requirements. Kayas believes that embedded systems are all about predictability. Therefore, it is crucial to ensure that tasks, especially motor control algorithms, are executed within a specific time frame. A motor control algorithm has very strict timing needs, and executing tasks in the required time window is crucial for the system’s operation. That is why the embedded software must work perfectly to guarantee a reliable AMR with predictable response times.

Embedded software developer working in the testing area of arculus office
Kayas busy working in the testing area of arculus office

Adaptation: The Key to a Successful Embedded System

Just like any tech system, AMRs also evolve. New components are added, and features continue to improve. Therefore, the embedded software must also adapt and evolve. That’s why the arculees support over-the-air (OTA) updates, allowing engineers to upgrade and enhance the software as needed remotely.

Kayas explains, “Our embedded software supports OTA updates via the Linux module. It means that when the Linux module is updated, the software for the microcontrollers is also updated, allowing us to integrate new components or functionalities seamlessly.”

This adaptability ensures that the AMR can evolve, supporting new components or features without needing a complete revamp of the entire system. An up-to-date embedded system makes it easier to ensure the reliable and autonomous function of the robots.

Bottom Line

In short, embedded software is crucial for bringing arculees to life. It ensures the robots operate smoothly, guarantees effective communication between components, and adapts continuously with the addition of new features.


Learn more in the video below!

March 25, 2025

Inside the arculee Brain: How Does a Robot Think?

At the core of every arculee, our Autonomous Mobile Robot (AMR) is its brain. This powerful software system processes sensor data, executes commands, and guides the robot through complex environments. Software Engineer Thomas Fuhrmann explains how it works and why it’s essential to the robot’s performance.

What is the arculee Brain?

The brain is the central software of an arculee that manages all the tasks of the robot, including navigation, decision-making, and command execution. It receives orders from an outside source, like a fleet manager, processes its surroundings through sensor data, decides movements, and ensures overall efficiency in AMR operations.

Thomas Fuhrmann, Software Engineer at arculus, uses the analogy of the human brain to clarify its functions:

"The arculee brain functions similarly to a human brain. If you imagine an arculee as a body, the chassis is like the physical form; the electronics and cable harnesses are the organs and blood vessels. Just like in humans, the brain controls everything for the robot."

Processing the environment

Thomas highlights three main steps the arculee brain follows when processing its surroundings:

  1. Sensing: The arculee uses different sensors to gather information about its environment, similar to how humans rely on sight or hearing. For example, sensors like LiDAR generate detailed point clouds that map the robot’s surroundings.
  2. Interpreting: The brain processes the sensor data to interpret the real world. For instance, it can locate itself and recognise objects and obstacles that might be present in the robot’s path.
  3. Implementing: Based on the interpretation, the robot makes timely decisions, such as stopping or altering its route to avoid collision with an object in the way.
LiDAR sensors on one of the arculees

The Brain’s Tech Stack

Developers at arculus build the arculee brain entirely in-house and avoid relying on external frameworks to maintain full control over performance and system behaviour. Thomas explains that they use C++ for the core system because it provides the speed and low-level access required for efficient robotics. For user interface components, they use Python, which allows for faster development and more efficient testing.

To improve modularity and efficiency, the developers plan to migrate the stack to ROS2, a well-known robotics framework that enables clearer system architecture and easier integration of new components. We will explore this migration in a future blog post.

Thomas, working on the arculee brain code

Challenges and Solutions

Developing a sophisticated piece of technology like the arculee brain comes with its own set of challenges. Thomas points out the following three:

  1. Code Maintenance: The brain stack, including the code base, has evolved over the years, becoming increasingly complex. As features and functionalities expanded, maintaining the code became more challenging due to increased interdependencies within the program and legacy structures. The team tackles this by constantly checking and conducting frequent debugging sessions.
  2. Managing Complexity: Our AMRs navigate autonomously in dynamic environments. This requires a solid system that can handle a wide range of possible scenarios and corner cases for maximum efficiency, safety, and optimal performance.
  3. Testing and Validation: The office testing area allows developers to test the arculees in a controlled environment to ensure quality before deployment. However, the robots don’t always behave as expected, especially during the early stages of development. To improve performance and stability, the team runs countless tests and refines the software based on real-world behaviour.
Testing real-world performance and function is crucial to developing the arculee brain

Sharper Brain, Stronger arculees

The arculee brain handles all the core functions of the robot and can thus make or break it. Thomas sees a well-designed brain as key to precision, reliability, and adaptability. As development continues, improvements in navigation and decision-making will help arculees respond more effectively to increasingly complex environments. A sharp brain doesn’t just keep an AMR moving—it sets the foundation for smarter automation.


Learn more in the video below!

March 19, 2025

This Is How Prototyping Makes Intralogistics Solutions Better

Prototyping is essential in the development of software for intralogistics, allowing teams to test ideas, refine solutions, and enhance user experience before full implementation. In this article from our Product Management series, Georg Held, Product Manager at arculus, shares how we use prototyping to drive innovation, optimise software performance, and improve efficiency.

Prototyping in Intralogistics

Intralogistics systems, supporting warehousing and production require a well-integrated hardware-software solution. While many monolithic systems perform well, they often hinder innovation. Exploring, testing, and refining new ideas before implementation is challenging. To address this, arculus leverages prototyping to gain insights before adopting new solutions. This allows us to collect early feedback, minimise risk, and improve efficiency to maximise product potential.

Let’s explore how arculus uses prototyping to innovate in planning, installing and managing a fleet of Autonomous Mobile Robots (AMR).

What is Hardware-Software Prototyping?

Today's prototyping culture goes back to Eli Whitney's promotion of "interchangeable parts”. In the late 1800s he advocated standardising identical components for easy replacement. This enabled mass production, simplified repairs, and improved integration and testing of new parts. It also allowed cost-effective iterations to enhance products in development, or for already existing ones, forming the foundation for modern prototyping.

Centuries later in the 1990s, the term hardware-software co-design emerged, as embedded systems gained recognition. Today arculus builds on this concept with a strong prototyping culture. Hardware-software prototyping as the name suggests, combines both hardware and software, allowing users to test products before full production. This approach enables effective testing and fosters innovation, efficiency, and clarity. There are many ways to engage users:

  1. Physical models, even non-functional ones, are used to represent form and design;
  2. Mock-ups that demonstrate the visual design of a concept;
  3. Simulators that replicate system behaviours;
  4. Clickable prototypes that allow users to interact with the system.

Numerous benefits such as the early identification of user experience problems, justify the time and effort required to create and test prototypes. Feedback from these tests is critical for future product development iterations, and establishing a learning culture through prototype experimentation is essential. As discussed in the previous blog post, prototypes are a key part of product discovery at arculus.

The Strength of Prototyping at arculus

The high complexity of intralogistics systems requires a strong prototyping culture. At arculus we rely on it not only for hardware but also to guide product development. By incorporating prototypes early we gain valuable insights from the start, enabling continuous evaluation and necessary adjustments throughout our discovery process. This agility ensures we integrate feedback early on, optimising resources while refining user experience. Crucially, recognising when to stop prototyping after validating a hypothesis ensures efficiency and keeps product delivery on track.

From Wireframes to Clickable Prototypes

After agreeing on the user journey we immediately moved to wireframes of the desired functionality, adding brief descriptions for context. This created a collection of screens covering key parts of the user interface, while revealing gaps to address. Using a collaborative tool like Figma, we efficiently captured extensive feedback in real time, enabling continuous iteration.

Screenshot of a collaborative Figma board showing hundreds of interface wireframes arranged in flows, with multiple users commenting and reviewing. The board represents the evolution of wireframes into a clickable prototype used for early feedback and product exploration at arculus.
Wireframes evolving to a clickable prototype using Figma

To better reflect the user experience, we compiled a clickable prototype by adding interactivity to the wireframes. This helped overcome challenges from our legacy software toolchain, as the previous solution lingered in people's minds. The visual, and more importantly the interactive approach, encouraged users to explore new solutions, helping them quickly adapt to move beyond past systems and actively engage. In the end, the validated prototype answered many of the questions that our development teams had, as they built the real application.

Understanding System Performance

Later on, and as an important part of the user journey for the arculus Fleet Manager, we simulated a fleet of mobile robots, to see the heart of the software in action without connecting to real vehicles. This framework helped us explore possible transport scenarios for the first version of the application. Using a challenging transport matrix, we configured a large-scale simulation scenario—another way of prototyping that allowed us to understand performance on all levels of the software at an early stage in the product discovery and development phase.

Using Mock-Ups to Test and Understand Software Performance

In this phase we validated the required infrastructure, architecture, and algorithms for the arculus Fleet Manager. We set up dozens of driveways, deployed 100 mock-up vehicles, and established 1000 handover stations. The simulation ran smoothly for hours, and the new software toolchain achieved the goal of having a stable foundation that optimised material flow in intralogistics for our customers.

The prototype proved that the core components of traffic management were suitable for large-scale deployment. However, for the MVP (Minimum Viable Product) we opted for a more robust, purpose-built simulator developed from scratch.

In one of our future blog posts, we will provide insights into the simulation capabilities of the arculus Fleet Manager.

Connecting the Dots: From Prototype to Physical Movement

The next step was connecting to real vehicles. Since the software on the robots already had defined interfaces and communication protocols, we could quickly perform the first driving actions. Naturally we recognised the need for a more robust interface between the arculus Fleet Manager and the vehicles for real projects, but taking a step-by-step approach reduced the complexity of software-hardware interaction early on.

Instead of defining and implementing the entire interface at once, we iteratively developed the most important functionalities for validation. One goal was to confirm that the new arculus Fleet Manager, with its high user experience standards, could guarantee safety and accuracy in real-world scenarios. For instance, through prototyping we tested the hypothesis that users wouldn’t need to enter error-prone coordinates, but could rely on a visual interface for the alignment of all layout objects. Benchmarking vehicle positions between the layout and reality took several iterations, but each step confirmed we were on the right track.

Four people observing and interacting with Autonomous Mobile Robots in the arculus test area. A large screen shows the Fleet Manager interface used to monitor robot behaviour. One person operates a laptop connected to the screen, while others watch the robots navigate the space. This setup demonstrates hardware-software prototyping and system validation in a real-world environment.
Hardware-Software Codesign and Prototyping in the arculus Test Area

The prototypical approach also helped us gain the trust of critical users, especially the field engineering teams responsible for commissioning projects at customer sites. Beyond validating the initial goals, prototyping also revealed other crucial improvements to the user journey. To capture those during typical testing sessions, we created systematic scripts with expected results, leading to clear actions for related teams. And half a day later the backlog already reflected new items for upcoming sprints. Rigorous prioritisation enabled teams to stay focused, and subsequent test sessions confirmed that development was moving in the right direction.

In an upcoming blog post, we will share more insights on how the arculus Fleet Manager’s user interface supports rapid project deployment.

Our Recommendation

There is no one-size-fits-all approach to prototyping. So here is our recommendation for getting the most out of it:

  1. Select and agree on the component or feature to prototype. Often prototypes are not for the most technically complex topics, but for those requiring the right user experience. Focus on the hypothesis and goals you want to achieve and strictly adhere to them to complete concepts quickly.
  2. Prioritise between low-fidelity and high-fidelity. Although prototypes support more efficient development, consider how much effort and complexity to invest. Low-fidelity prototypes, even on paper are often enough in the early stages of product development. Remember: the priority is to validate the concept, not how you build the prototype.
  3. Discuss and choose the right prototyping tools. The most suitable tool depends on the type of feedback you need. Over the years we've learned not to limit ourselves to a few tools, but to embrace cutting-edge solutions, and to stay open to trying new ones. Also, don't feel obligated to reuse the same prototype for subsequent development stages.

Finally with the advent of generative Artificial Intelligence (AI), it has never been easier to start prototyping. AI not only aids in creating prototypes, but also in quickly analysing and evaluating feedback. As this technology evolves, we continue to explore innovative ways to prototype, accelerating our product development in the future.

March 5, 2025

How User Journey Mapping Helps Us Deliver Real Product Value

User Journey Mapping is a powerful tool for defining product scope and ensuring a seamless user experience. In this post we explore how it helped refine the arculus Fleet Manager, from identifying user needs to structuring functionality. By leveraging insights from previous versions, market feedback, and internal collaboration, we built a strong foundation for future development. This article is part of a series on creating value through strong product management—written by Georg Held, Product Manager in the Software Team at arculus.

Why We Turned to a User Journey Map

When the idea of revamping the arculus Fleet Manager came up, we quickly realised that a strong focus on all aspects of product development was essential to building a valuable product. In this context, finding the right product value was a key point of the debate. Additionally, we realised that there isn’t a single typical user of a Fleet Management System for Autonomous Mobile Robots (AMRs). Conversations with insiders of our legacy software revealed a wide range of expectations on top of the technical challenges of defining the product’s underlying architecture.

As we described in our previous post about product discovery, thoroughly analysing and defining the product's scope, users, and relevant operational workflows would be crucial before starting development. However, we also encountered many opinions on what to tackle first. Therefore setting focus and priorities without sacrificing oversight became essential. Let’s dive into how user journey mapping helped us rapidly advance with defining the scope and prioritising it.

What is a User Journey Map?

The goal of a user journey map is to gain a complete understanding of how users interact with the product throughout its defined stages. More precisely, it provides valuable insights into users' needs, expectations, and pain points—all essential for understanding users’ experiences and analysing operational workflows.

Visualization of the user journey mapping process for automated robotics, highlighting key roles: Planner, Field Engineer, and Operator. The images showcase planning with blueprints, configuring robotic navigation on a laptop, and monitoring fleet management software in an industrial setting.
A user journey map is typically represented in a graphical map that provides an overview and supports collaboration between stakeholders

Visualising the entire user flow reveals gaps in the user experience and offers opportunities for innovation. Lastly, it helps us identify all development teams required for specific steps in the process, leading to the distribution of ownership across product development later on. User Journey Mapping is a prerequisite for identifying and designing a seamless product user experience, or in this case a system.

To learn more about User Journey Maps, visit the Yale University Quick Definition website.

The User Journey Map for the arculus Fleet Manager

To get started, we broke down the project process in which the software is typically used:

  • End-of-line testing within the arculus AMR production
  • Project planning in pre-sales
  • Specification phase after customer quote acceptance
  • System and field commissioning
  • Operations, service & support

In each of these phases we structured the following:

  • User
  • Scope
  • Objectives
  • Interaction with the system

This quickly filled a large whiteboard, but also revealed the need for improvements and gaps in user details, especially in how they interact with the system. Through relentless user interviews, the full picture emerged. Below is a simplified version of our initial user journey map:

 Comprehensive user journey mapping for automated robotics, detailing phases from pre-sales to after-sales. The visual workflow outlines key user roles—Technical Sales, Field Engineers, Operators, and Support—along with their tasks, current processes, and future improvements in layout planning, simulation, deployment, and operational monitoring.

Since we already had great insights from previous versions of the arculus Fleet Manager and the market, we could quickly map the required functionality and the existing pain points. These shaped our first priorities, which we then refined further. Wireframes and prototypes helped validate hypotheses, leading to better concepts for users to achieve their goals at each step of the process. This resulted in many cards highlighting the specific functionality required.

As a last step, we further broke down the functionality by assigning it to the most relevant product development teams. This added structure and clarified ownership.

Learn more about the development of the arculus Fleet Manager here.

Conclusions and What’s Next?

In general the user journey map is a great tool for understanding users, their goals and operational tasks. It helped us define the product scope and, more importantly, prioritise the key things for an MVP (Minimum Viable Product) of the system. It also guided us in achieving a great user experience.

Finally, the tool itself—we used Miro—allowed us to collaborate efficiently. Based on the feedback we received, we highly recommend user journey mapping for the intralogistics industry. Now and in the future, this framework will remain a living tool for developing new products. It is also the basis for breaking down product ideas by applying user story mapping in each team's backlog.

In the next blog post we will explain the strength of having a well-aligned user journey in getting started with prototyping; precisely with extracting wireframes to collect first user feedback.

This post is a part of our Product Management Best Practices series. Stay tuned for more articles coming soon!

February 25, 2025

A Tale of Two Technologies: Smarter Robotics with NVIDIA’s Orin NX and Debian

Autonomous Mobile Robots (AMRs), like our arculees, rely on several advanced technologies. Two key components are NVIDIA’s Orin NX and Debian OS (Ubuntu), a Linux-based operating system known for its stability and flexibility. Together, the two provide prime computing power and reliability to run our robots smoothly and safely. Hassan Saeed, DevOps Engineer at arculus explains how this combination supports our arculees and why it’s the ideal setup for our development.

Better Robotics with NVIDIA’s Orin NX

The arculees, our Autonomous Mobile Robots (AMRs), improve warehouse productivity, especially through their smooth navigation and modern safety features. However, to navigate safely and efficiently, our robots must process their surroundings in real time. This includes identifying obstacles, recognising markers, and making fast decisions. This requires strong hardware capable of handling complex data on the go.

This is where NVIDIA’s Orin NX, a compact System on Chip (SoC), comes in. Hassan Saeed, our DevOps Engineer, describes it as “a powerful board with sophisticated data processing capacity, along with advanced CPU and GPU capabilities.” By rapidly computing information from the robot’s software and input devices, Orin NX improves obstacle avoidance and marker recognition, allowing arculees to navigate seamlessly. Its GPU further optimises AI-driven tasks through efficient parallel processing, making complex computations faster and more reliable.

A closeup of NVIDIA’s Orin NX Board
NVIDIA’s Orin NX Board

Debian - the Classic Operating System

Debian is a free, Linux-based, open-source system known for its stability, security and flexibility. These features make it an ideal choice for robotics, where a dependable operating system adaptable to various hardware configurations is essential for smooth functioning. Hassan expands on the multiple benefits of this strong OS:

"Debian provides a strong foundation for various software applications and supports a wide range of hardware. For example, you might have used Ubuntu on your computers. It is also a derivative of Debian with a user interface (UI) similar to Windows. Yet, Debian’s popularity stems from its security and robust package management system, making it a preferred choice for many developers and enterprises."

A closeup of Debian screen code
Debian is one of the oldest operating systems, offering stability and flexibility to users

Orin NX and Debian: a Powerful Combination

By combining Debian’s stability and flexibility with Orin NX’s real-time processing and energy efficiency, Hassan and his team created a system that ensures smooth navigation, real-time decision-making, and long-term adaptability for arculees. He delves deep into how they made the two technologies work together to achieve an optimal ecosystem at arculus:

Flexibility and Stability: Debian is a natural fit for the Orin NX hardware because it is flexible and stable. Its broad hardware support ensures smooth integration with the Orin NX, while its robust architecture makes the robot’s system more reliable. 

Simplifying Updates and Adaptations: Pairing Debian with Orin NX streamlines the software update process for arculus. Integration with Debian’s package management system makes rolling out updates and security patches efficient. The regular support from Debian and NVIDIA ensures the software remains secure, up-to-date, and adaptable.

A Rich Ecosystem and Strong Community: Debian’s extensive software ecosystem and activity community provide a solid foundation for innovation. It supports various robotics applications and ensures continuous development and troubleshooting resources, which are invaluable for development cycles at arculus.

Seamless Integration for Core Functionality: Debian's strong support for robotics software aligns perfectly with Orin NX’s high-performance hardware capabilities. This integration enables arculus to deliver advanced robotics functionalities such as smooth navigation, obstacle avoidance, and precise task execution with reliability and security.

Finally, while this combination of two technologies already greatly serves the arculees, Orin NX offers various AI features that are especially relevant to robotics. Hassan and his team are actively exploring its Machine Learning (ML) aspects, such as predictive analytics, decision-making, data-driven processing, and computer vision. The aim is to utilise these features to further improve our AMRs and software.

Hassan Saeed, DevOps Engineer at arculus working at his station in our Munich office
Hassan busy working on his station at the arculus office in Munich

Integration challenges and how arculus solved them

Implementing NVIDIA’s Orin NX in the arculus ecosystem meant facing specific challenges. One of the main caveats, in this case, was the hardware incompatibility. Hassan explains, “NVIDIA’s kernel is designed to work with its own hardware, so it failed to recognise arculus’ custom-built board — the Robot Control Unit (RCU).”

The RCU, also known as the arculee’s heart, has multiple peripherals and devices that control the robot’s movements. So, to fully garner the benefits of Orin NX without compromising the functionalities of the custom-built board, the team had to make some adjustments.

“We configured all the devices according to the kernel provided by NVIDIA and also tweaked its device tree to ensure that the RCU’s components were fully supported,” continues Hassan, “It took some adjustments, but in the end, we integrated Orin NX smoothly and made the system work perfectly.”

RCU and NVIDIA's Orin NX
The arculus RCU and NVIDIA’s Orin NX together at work

Three Cheers to arculus, Debian, and Orin NX

Choosing Debian and NVIDIA’s Orin NX for product development wasn’t just about compatibility. It was a strategic decision based on performance and practicality. Hassan Saeed, DevOps Engineer, explains what motivated the team:

“Debian’s popularity and extensive package repository made it an obvious choice for us. Its flexibility in supporting multiple programming languages, including C and Python, aligns perfectly with arculus’ software and development needs.”

At the same time, Orin NX stood out for its powerful hardware features, which are necessary for robotics. With external memory options, NVMe device integration, high CPU and RAM capacity, and advanced GPU capabilities, it provided the performance arculus needed. Hassan adds:

“Ultimately, the compatibility between Debian and Orin NX helped us optimise both software and hardware, ensuring efficiency in our operations at arculus.”


Learn more in the video below!

February 17, 2025

This Is How arculus Scales Software With Product Discovery

Product management in intralogistics has long been project-driven, often prioritising execution over long-term scalability. But to build better software products, a shift towards Product Discovery is essential. In this blog post, we explore why this approach matters, the challenges of moving from custom-built solutions to a structured discovery process, and how it has helped us improve our product roadmap and decision-making. This post kicks off a series on creating value through strong product management—written by Georg Held, Product Manager in the Software Team at arculus.


The Shift Toward Product Discovery

In the past, people often considered one of the product manager’s primary responsibilities as gathering requirements and engineering. While this is undeniably true, Marty Cagan brought more focus to it by introducing the term "discovery" in 2007. He described it as finding out what to build. In fact, he emphasised that finding the right solutions is harder than building them (see The Origin of Product Discovery | Silicon Valley Product Group).

And this is precisely what we at arculus have observed in software: in intralogistics, there is too much focus on execution. In an industry where a few experts design highly complex and customised systems, understanding the real problems of the market is difficult. In the past, project-based implementation addressed specific, individual challenges. Today however, speed, efficiency, and adaptability demand more than just custom solutions. Established product management with a stronger focus on market needs is essential to scale your business, serve a broader range of customers, and keep costs down.

Info: This article kicks off a series of posts on creating value through a strong product management focus. Stay tuned!

What is Product Discovery?

A person standing at a crossroads sign labeled 'How' and 'What,' symbolizing decision-making and strategic choices in product discovery.

Because we draw from many different sources to define product scope, product discovery provides a strong framework for avoiding misguided development. Through continuous discovery, we test ideas against market problems, user needs, and business goals. Cycles of exploration, experimentation, and validation ensure the focus remains on promising concepts that users will appreciate. Therefore, the focus of product discovery is on “What”.

(Image generated by Gemini AI)

In future posts, we will explore these cycles further, for example, by using prototypes to assess user needs. Naturally this process isn’t always straightforward, as it lacks predictability. Regular decision points foster collaboration on how to move forward with an idea, helping to navigate uncertainty.

Ultimately it’s crucial to avoid wasting time on ineffective concepts. That’s why speed plays a key role in the early stages of exploration. Reducing effort on unviable ideas is essential, especially since teams should focus on delivering real value.

This is where product discovery comes in. It helps ensure teams move fast in the right direction and continue to innovate. For more details on addressing risks upfront, solving problems collaboratively, and focusing on outcomes (customer and business problems) vs. outputs (features), see Discovery vs. Documentation | Silicon Valley Product Group.

Product Discovery at arculus

At arculus, we describe product discovery as capturing market problems and finding specific user needs for our system. To capture these problems, we focus on:

  • Industry & market pain points through trend reports, competitive analysis and insider insights;
  • Customer requirements through early opportunity scanning;
  • User experience along the product journey through target user interviews and end-to-end testing;
  • Technical trends and the management of legacy architecture and technology.

All of these contribute as "insights", which lead to what we call a product idea. To develop these further, a team of product and technical experts explores solutions to the problems. Importantly we always keep the end user in mind. This enables a vertical perspective—crucial for the arculus system—which integrates both software and hardware. Too often we’ve seen these treated as entirely separate due to their technical nature, even though true functionality depends on seamless integration across all layers, from user interaction to underlying hardware.

The team creates concepts for an idea and supports them with whiteboard sketches or even clickable prototypes where useful. We then plan product increments to determine overall priorities. Based on this, we either opt out or continue planning and development. At this stage, our product departments have found what Marty Cagan calls the "right product”. In addition, there is a high level of transparency and collaboration among all stakeholders, a prerequisite for good, high-performing teams.

Diagram illustrating the Product Discovery and Delivery process, showing the flow from idea creation and insights to backlog teams through PI planning.
The Product Discovery and Delivery processes

We use Jira Product Discovery to facilitate this process, leading to the arculus product roadmap.  Although any other tool could also work, this one provides the flexibility needed to orchestrate all items efficiently and transparently. Nevertheless, the arculus product team has found that rigorous discipline is more important than perfect tools.

Lastly, once a product discovery is done, the necessary product increment (PI) planning will bring the idea to the Development teams. If you want to know more about the delivery at arculus (“How”), read our previous post about fast development here.

Dealing with Project Requirements

As mentioned earlier, product teams dealing with many intralogistics projects often encounter various individual customer requests. While this is usually the norm, timing these requests is critical for any product manager. Additionally, handling requirements on a deal-by-deal basis leads to uncoordinated concepts.

As arculus grew, this became a real challenge and prevented us from consistently delivering a marketable solution. In fact our teams were delivering projects but had little time to follow a sustainable product roadmap. As a result the product architecture and business case suffered, leading us to plan a new version of arculus Fleet Manager (read more about it here).

This was not only a technical decision but also a shift towards excellence in what we build. By applying product discovery as described above, we broke new ground in addressing individual needs. Some of the best practices we implemented are outlined below:

  1. Collaboration with the sales department(s): This allows the product team to understand potential product gaps in the pre-sales phase before an offer is made and provides enough lead time for thorough product discovery. While we may choose not to pursue some opportunities or fail to win them, the effort is worthwhile because it improves our overall understanding of the market.
  2. Strict focus on the problem: This applies especially to customer requirements typically described as "one-liners" in a project's requirements catalogue. Among other things, this means evangelising the relevant departments so that customer interactions start with the problem rather than the solution. As Simon Sinek’s Golden Circle suggested, arculus teams relentlessly ask “Why” to identify problems.
  3. Support project teams with product documentation and expertise: This helps the team understand the portfolio upfront and during specification negotiations with customers. This is also a potent tool for steering discussions toward existing features. We regularly learn that these features are both sufficient and appreciated.
3 members of the commercial team at arculus standing in a bright workspace, highlighting collaboration and teamwork
The commercial team at arculus watching a presentation about new product features
  1. Housekeeping in product discovery to identify risks early:
  1. Process: We created a product discovery process to keep track of the product discovery backlog (currently over 150 ideas). This allows us to see the status of an idea throughout its evolution: from the initial stage (parking lot) through discovery, planning, and development. The development status is captured via links to the implementation item in each team’s backlog.
  2. In addition, each idea has fields to identify affected teams, customers, and even relevant business goals. It also considers time factors, such as when ideas should reach a product release and other milestones, ensuring that the roadmap reflects these priorities.
  3. Using the arculus product discovery template, we have structured the way we capture ideas to make them easily understandable for anyone.

Responding to all product ideas is typically challenging. That is why the recommendations above, along with strategic direction, e.g., in focus markets, help us make the right decisions. As a result, we constantly update the product roadmap. This also gives all product management stakeholders confidence in what the team delivers. In the end we are positive that we made the right decisions to make our customers happy.

Conclusions and What is Next?

By applying a thorough product discovery approach to product management, arculus has already taken huge steps toward building better software solutions. We gained coordination, structure, speed, and oversight in creating the roadmap. This led to making more informed decisions and as a result, a better product-market fit.

As product discovery is a constant process, it is important to keep evolving and improving it. Among other factors, increasing the product value remains a key focus. Hence, we constantly evaluate performance by using available data points and feedback circles to keep prioritising the right product ideas, ultimately creating value in the market. This will bring arculus' Product Management team closer to the famous “The Ultimate Guide of a Product Manager Day by-Day Activity” by Lucas Balbino.

Stay tuned for the next post of our Product Management Best Practices series!

January 20, 2025

5 Intralogistics Trends to Look Out For in 2025

Labour shortages, high productivity demands, and ever-changing markets are reshaping the supply chain industry. To stay competitive, companies must understand and adopt the technologies and strategies defining warehousing in 2025. This blog post highlights the top five intralogistics trends to help you address industry challenges and transform your business this year.

Technological advancements, market analysis, and industry research define the best practices to improve intralogistics. From streamlining processes to full-scale automation, warehouse solutions have improved tremendously in the last few years. Yet, shifting markets, workforce shortages, and rising productivity demands leave room for innovation. As technology evolves, new trends emerge to address these challenges. Let’s explore the key intralogistics trends for 2025 to help your business stay ahead this year.

Top 5 Trends in Intralogistics for 2025

1. Warehouse Automation

Labour shortages continue to challenge the intralogistics industry while rising demand for faster deliveries pressures businesses to boost productivity. To address this issue, many companies have turned to warehouse automation, streamlining operations and improving efficiency.

The numbers speak for themselves: the European logistics automation market will increase by a compound annual growth rate (CAGR) of 11.18% from 2024 to 2033. This trend is not just a passing phase — it works and is here to stay!

arculee M, one of our Autonomous Mobile Robots (AMRs), in the testing area of the arculus office 
arculee M, one of our Autonomous Mobile Robots (AMRs), in the testing area of the arculus office 

2. Robotics

When it comes to warehouse automation, the most successful trend is the adoption of mobile robots, such as Automated Guided Vehicles (AGVs) and Autonomous Mobile Robots (AMRs). Their popularity stems from their ability to increase supply chain productivity by minimising errors, reducing costs, performing repetitive tasks quickly, and increasing safety.

With so much to offer, it is no wonder mobile robots will remain in demand. Their market size is thus expected to reach USD 29.86 billion in 2025.

3. Artificial Intelligence (AI)

Artificial intelligence (AI) and machine learning (ML) are no longer just buzzwords; they are transforming intralogistics by enhancing efficiency and accuracy. These technologies enable real-time inventory management, optimise storage solutions, and streamline order fulfilment processes.

For example, AI-driven predictive analytics allow better equipment maintenance, alleviating breakdowns and operational costs. Similarly, it offers accurate demand forecasts, ensuring better resource allocation and reduced overall expenditures. It is safe to say that integrating AI and ML in warehouses will remain an emerging trend in 2025.

4. Internet of Things (IoT) and Real-time Monitoring

Another trend to improve supply chain efficiency is the Internet of Things (IoT). This field involves interconnected devices, software, and other technologies with sensors and processing abilities that connect and communicate over the internet.

IoT enables real-time monitoring of warehouses, allowing for immediate data collection and analysis, streamlining intralogistics, improving management, and enhancing decision-making. Companies should harness this potential to increase efficiency, optimise processes, and meet market demands.

One person explains how to operate arculees (our AMRs) while several other people from the arculus stand and listen. An arculee is also visible in the frame.
Team arculus learns how easy it is to operate arculees, our AMRs

5. Sustainability

With regulations like the EU Green Deal, the Corporate Sustainability Reporting Directive (CSRD), and the Security and Exchange Commission’s (SEC) Climate Disclosure Rules, embracing sustainability principles has become essential.

To comply, companies are increasingly adopting green logistics practices, such as utilising electric vehicles. Another key focus is obtaining certifications to accurately report CO₂ emissions, an essential prerequisite for meeting these new standards. These efforts align with the growing consumer demand for eco-friendly products and services. The hope is to make the future green!

Looking Ahead

The intralogistics industry is here to grow, with technology driving faster, more efficient solutions. Innovations in robotics, data analytics, machine learning, AI, and automation are transforming warehouses. Don't let these trends pass you by—integrate them into your supply chain processes to keep your business flourishing in the future.

December 11, 2024

How do arculees Find their Way: AMR Mapping and Navigation Explained

Autonomous Mobile Robots (AMRs) can locate and navigate themselves in an environment—this is how they accomplish their tasks of assembly and transportation. But how do they know where they are and where they need to be? Behind these simple questions lies the science of localisation, mapping, and navigation. This blog post explains how our AMRs, the arculees, locate, map, and navigate to ensure accurate, efficient, and autonomous movement.

Autonomous Mobile Robots (AMRs), like the arculees, must navigate different environments, such as warehouses or other facilities, to move from one place to another and perform a task. The first step to navigation is mapping, which simply refers to the process of creating a map. Before arculees can drive autonomously, we need a map because otherwise, we don't have a point of reference; we don’t know where the robot is and where it needs to go.

How do arculees Generate a Map?

Mobile robots rely on data from their surroundings to create accurate maps for navigation. They need two types of information: their own location and the location of other objects around them. The arculees collect this important sensor data through two LiDAR (Light Detection and Ranging) scanners, an IMU (inertial measurement unit), and the wheel odometry.

LiDAR Scanners: They use laser beams to measure distances to objects, generating a point cloud that is used to create a map using the robot’s software.

Inertial Measurement Unit (IMU): The IMU is an electronic device that provides data on a robot’s acceleration and rotation.

Wheel Odometry: It is the process of using data from wheel encoders to estimate the robot's position and orientation over time by calculating how far the wheels have travelled, typically relative to the robot's starting point.

Together, these tools help the arculees create a map representative of their real environment and determine their position within it.

Two developers at arculus working on computers on AMR Mapping and Navigation techniques
Our developers at work to ensure the arculees navigate accurately

SLAM - Simultaneous Localisation and Mapping

The method of collecting data from scanners, IMU, and wheel odometry to generate a map is called SLAM. It stands for simultaneous localisation and mapping. To create an accurate map, you also need to know where the robot is on that map, which is what localisation stands for in the acronym. With the scanners and sensors in place, you drive the robot around and collect the scanner data and the data on where the robot is. Finally, you combine that to create a map.

Once the map is there, the robot software loads the map as a reference frame and is then able to drive within it. Since the map itself has a coordinate system, the software can tell the robot where it should move and where it is, creating a route and driving from A to B.

Tools and Techniques: Mapping, Localisation, and Navigation

Localisation, mapping, and navigation are the processes that go hand in hand to ensure autonomous driving of mobile robots like the arculees. However, there are certain tools and techniques to make the processes work:

At arculus, our tools, algorithms and sensors include the SLAM toolbox, Google’s Cartographer, IMU, wheel odometry, and two laser scanners. The SLAM toolbox is an open-source 2D SLAM tool specifically developed for Robot Operating System 2 (ROS2). Both Cartographer and SLAM tools are used for real-time localising and mapping across multiple sensor configurations and platforms.

The map of the arculus office generated with cartographer and LiDAR scanners
Map of our office generated with Cartographer and LiDAR scanners

Meanwhile, there are two ways to record a map:

Offline: We create a recording by driving around the environment whose map we need and collect data. This data includes scanner information, IMU (inertial measurement unit) readings, and wheel odometry. Afterwards, we process the recording using a Cartographer to generate an offline map.

Online: We primarily use Cartographer for online recording. It simply processes live data from the robot in real time to create the map.

Once the arculees have a laser map, they can drive automatically. However, to complete tasks, operate safely, and avoid deadlocks, an efficient traffic management system overlooks the robots, giving them specific driving orders. This system lives in our fleet manager. The best path is calculated by considering various aspects such as battery charge, distance, and possible driveways where the robots can go. Therefore, our Fleet Management Software sends step-by-step instructions to the AMR, guiding it for the next actions at a time. As the robot moves, the fleet manager continuously updates the route, ensuring safe, smooth, and accurate navigation.

A screen shot of the arculus Fleet Manager software
The Fleet Management Software tells the robot which route to take

Current Challenges and Hopes

Like any other technological advancement, AMR mapping and navigation comes with challenges, but there are always ways to find better, more viable solutions. While our current mapping techniques work perfectly within small to medium areas, a possible caveat can be creating maps of large and dynamic environments. However, our team of developers at arculus addresses this by recording the data and later processing it offline on more powerful computers, where computational constraints are no longer a concern.

Although the present mapping processes are effective, arculus aims to improve and innovate continuously. That is why our ultimate goal is to keep updating and refining the AMR mapping methods.

Hopes for the Future

Future advancements in mapping and navigation promise faster algorithms and higher map accuracy. Improvements in accuracy can address persistent issues. For example, enhanced precision would enable robots to navigate more efficiently, reducing errors and the need for manual corrections.

These advancements hold great potential for the role of autonomous mobile robots. With greater accuracy, robots could move faster and operate even more reliably. As a result, accuracy can create a more stable and efficient solution for dynamic environments.

The Way Forward

Mapping and navigation in autonomously driven vehicles is an emerging but crucial part of robotics. As such, it has ample room for growth and advancement. While there is no silver bullet to improve everything all at once, the tools developers use for mapping and navigation are composed of smaller components and algorithms, so a slight improvement in one of the parts can positively affect the entire process. On the other hand, staying connected to recent and relevant research, reading publications and keeping oneself up-to-date on what’s happening in the field is essential for future breakthroughs. There is much room for improvement, and tools need updating, especially with artificial intelligence entering the equation.

October 21, 2024

6 Tips to Choose the Right AMR For Your Warehouse

Autonomous Mobile Robots (AMRs) can significantly enhance warehouse productivity. However, selecting the right robot for your specific intralogistics needs is essential to get the most out of this innovative technology. In this blog post, we’ll share key tips to help you choose the right AMR for your warehouse.

As e-commerce continues to grow and labour shortages persist, many industries are turning to warehouse automation to stay competitive and keep up with the increasing demand. Autonomous Mobile Robots (AMRs) are a popular solution, capable of reducing shipping time by 30% to 50% while also improving safety, scalability, flexibility, and cost-efficiency. However, not all AMRs are the same, and finding the right one depends on your specific warehouse requirements. Let’s explore the various factors to consider when selecting the best AMR for your operations.

How to Choose the Right AMR for Your Warehouse

1. Know your Operational Needs

The first step is to consider which tasks the robot will handle in the warehouse. These operations could range from transporting and sorting products to assisting with assembly workflow. The AMR you choose should be based on these specific needs. For example, while agile AMRs like arculees are a great option for underload carrier and pallet transportation, other mobile robots such as Automated Guided Vehicles (AGVs) are more suitable for vertical lifting.

warehouse with pallets, shelves, and boxes
Warehouse operational needs play a key role in choosing the right AMR

2. Check the Pay Load Capacity

Load capacity is another major factor when choosing an AMR. The type of materials a warehouse handles will determine whether a robot with a lower or higher load capacity is more suitable. For instance, for moving lighter items, like textiles or consumer goods, an AMR with a lower payload capacity will work best. On the other hand, a robot designed to carry high loads is a better option for transporting heavier machine parts. Matching the AMR’s payload to the product weight is crucial for ensuring smooth operations.

3. Analyse the Cost

Budgeting is an essential step when investing in a new technology, but the lowest upfront cost doesn’t always guarantee the best value. Beyond the initial price, it’s crucial to factor in expenses like maintenance, integration, software updates, and energy usage. For instance, AMRs that seem cheaper at first may demand frequent servicing or complex integrations, driving up long-term costs. Balancing these factors will help you ensure a more cost-effective investment for your business.

4. Prioritise Safety

Integrating AMRs into warehouses involves regular interaction between robots and humans in shared spaces, making safety a critical concern. To minimise risks and maintain a hazard-free environment, it's essential to choose robots that comply with safety standards like TÜV SÜD and DIN protocols. This ensures both secure and efficient intralogistics operations.

5. Look for a Scalable and Adaptable Robot

Successful integration of AMRs also depends on their flexibility. As industries evolve and warehouse needs change, robots that can adapt to new environments, navigate obstacles using sensors, and respond to real-time data are highly desirable. The good news is that being easily programable and able to accommodate fluctuating workloads, AMRs are generally scalable. When purchasing an AMR fleet, it's important to prioritise flexibility in their operations.

A range of Jungheinrich forklifts and AMRs to choose from for efficient warehouse operations
Different Mobile Robots serve different purposes in warehouses

 6. Find a Supportive Vendor

Finally, choosing the right service provider for successful AMR integration goes a long way. When selecting a vendor, consider your specific warehouse needs and look for a partner that offers comprehensive solutions. For fully automated warehouses, a provider like Jungheinrich can supply a wide range of technologies, from AMRs to Automated Guided Vehicles (AGVs) and forklifts, ensuring seamless integration.

In Short

Integrating Autonomous Mobile Robots (AMRs) in the supply chain facilities is an effective option to support the workforce and tackle the ever-increasing demands of manufacturing. However, for maximum benefit, industries must opt for autonomous robots that are best suited to their need. To achieve that goal, companies must understand their operational requirements, research product specifications, analyse the cost-benefit ratio, and then choose the right AMR to make their warehousing processes safe, efficient, and optimal.

September 10, 2024

Mastering the Production of an AMR: Process, Assembly, and Product

At arculus, innovation and efficiency are the most critical factors when devising solutions. This commitment is adhered to at every stage of our Autonomous Mobile Robots (AMRs) production cycle—from prototyping and defining the different processes, to building, scaling, and testing them. In this blog post, Thorsten Mersdorf our Production Manager explains how his team produces the arculee M, our latest AMR model.

Recently, arculus introduced our latest Autonomous Mobile Robot (AMR), arculee M, to the world of intralogistics. Based on extensive market research and valuable customer feedback, the new model stands out for its enhanced load capacity, wide use case capability, good manoeuvrability in narrow aisles, and ease of maintenance. Our systematic yet innovative production processes have been pivotal in successfully delivering our state-of-the-art AMR.

AMR Production at arculus

AMR production means procuring and assembling the required components to build a functional and safe robot, ready for delivery and deployment. This crucial stage in AMR manufacturing plays a vital role in ensuring an efficient and streamlined product.

Exploring the arculee M production journey can thus offer valuable insights into making robot assembly more efficient. Thorsten Mersdorf, our Production Manager, emphasises that the AMR production processes fall into the following four categories:

  1. Knowing the Product: The first stage involves being 100% clear about the AMR and understanding the required specifications through researching the market, studying previous versions of the robot, and using any insights gained for prototyping.
  2. Defining the Processes: The next step is organising the data and ensuring that all the instructions at every step are clear for effective robot assembly.
  3. Securing the Resources: Defining and integrating adequate tools for various purposes and building a motivated team to carry out the task.
  4. Assembling and Adapting the Product: Finally, the team assembles, calibrates, and tests the robot. Moreover, flexibility, improving processes, and making changes according to market and customer needs and feedback are also essential for efficient AMR operation.

Cross-team collaboration

To support these practices, the Production department works closely with the Development teams at arculus to improve our AMRs. This collaboration is another secret ingredient behind our fast and efficient introduction of the arculee M. According to Thorsten, “Efficient production starts with the development of the products.” For example, developing separate modules for different robot components allows easy assembly and maintenance of the arculee M, by offering more flexibility and scaling options. That is just one way a decision at the development stage can affect and improve the building stage.

Two employees working together on their laptops at the arculus office
Thorsten Mersdorf (right) working together with Thomas Fuhrmann (left), a Software Engineer from the Brain Team

In addition to learning about the target product and coordinating with other departments, a lot more goes into the production cycle of the arculees. Let’s find out how to build a robot with mastery.

How to Build an AMR

The AMR production involves several key stages:

1. Pre Assemble

The actual process begins in Dresden, home to the arculus warehouse. Here, the team carefully thinks through the material selection beforehand. For example, we rely on corrosion-protected steel for the arculee M's structural components, ensuring durability and strength.

Leveraging an innovative modular approach, the arculee M comprises separate modules for different components, with dedicated teams putting each one together. This strategy allows for the pre-assembly of modules independently from the main construction, providing remarkable flexibility. It facilitates scaling and allows for outsourcing before the final assembly.

Thorsten further explains, “First of all there are the key modules. For example, the Electronics Module focuses mainly on the Robot Control Unit (RCU), also known as the robot's heart. Others include the Active and Passive Lift Module, the Drive Module, and the Chassis. Lastly we have the Auxillary Modules that cover all functional parts, such as cameras, key switches, access points to the robot, and all the UI features and environmental detection sensors.”

2. Assemble it All

The main assembly follows the fishbone principle, using cause-and-effect diagrams (resembling a fishbone structure) to create an optimal concept. Once that’s in place, the team installs each pre-assembled module into the robot. Of course, it is not simple, and the team considers several factors for aligning and securing the mechanical parts of the AMR. These include ensuring the tolerance of each part, optimising the fitting process, getting the specifications right, and maintaining strict quality control throughout the supply chain.

Two employees working on robot assembly at the AMR production area
Federica Granato and Thorsten Mersdorf working on the assembly of an AMR in the production area

3. Integrate the Robot

Configuring and calibrating different components and software is also crucial for the robot's proper functionality. At this stage, the team integrates the motors and sensors into the robot via the RCU and the S7 Safety process. Effective implementation of safety features in the AMR is critical for on-site equipment and personnel protection. Other tasks covered during the integration stage include:

  • Software flashing: Depending on the needs, it may include updating, resetting or rebooting the robot software for smooth operation.
  • Scanner, camera, and sensor adjustments: Calibrating the cameras, scanners, and sensors is crucial to ensure that AMRs collect accurate data about their surroundings for efficient object detection and navigation.
  • Robot lift system and drive configuration: Fine-tuning these systems ensures the AMRs can move and position themselves seamlessly at the customer facility.

4. Test

Testing involves checking the system, application, and performance to ensure safety and functionality. The team uses the four-eyes principle, meaning at least two people evaluate each process to guarantee accuracy. For this, we have quality checks throughout the production process. We also conduct other evaluations, such as the system test on the bench and the robot’s endurance test. The idea is to confirm that the AMR is functional according to the quality requirements and follows the safety standards.

The entire process of assembling, integrating, and testing a robot takes around 10 hours. However, the estimate doesn’t include the time spent defining the concepts and processes, or arranging the modules.

5. Have a Cool Team

A group of people who are passionate about what they do is one measure of the success of any project. The production journey of an AMR, like that of arculee M is no different. As Thorsten explains:

“Teamwork is also extremely important in production. If we don’t align the team towards a goal, we won’t be able to harness the skills of each individual in the best possible way. As a result, we’ll fail to awaken the required ‘winning spirit.’ But if we create the right environment, teamwork can develop, and the members will trust each other and ultimately enjoy taking on challenges and solving problems.”

Thorsten takes pride in the squad - a group of highly talented, driven, and creative individuals:

Jonas Jaeger is the Team Lead for Assembly and Integration and manages teams, resources, and the production area in general.

Federica Granato and Anika Lorenz, the Production Engineers, are responsible for quality assurance for the arculees and the warehouse management.

Josef Bauer and Marcel Trouillaud are the Mechatronic Experts. They cover integration and end-of-line processes.

Tamas Szipli is the Production Expert. He handles key resource assembly, tooling, and planning.

Diego Hidalgo, Integration Expert in Mobile Robotics, tackles tasks related to software and the robot UI.

Konstantin Bikard and Stefan Klein, the Production Technicians, take care of the assembly and equipment setup and adjustments for safe, high-quality robots.

Fazli Senel is the Robotics Service Engineer. He tests and maintains the AMRs for efficient robot operation.

“If you take a closer look at production and its environment,” continues Thorsten, “teamwork is one of the main factors contributing to smooth processes and good product quality.”

Five members of the arculus production team standing with arculee M (AMR) in the background
A part of the Production Team (from left to right): Marcel Trouillaud, Jonas Jaeger, Thorsten Mersdorf, Josef Bauer, and Tamas Szipli

6. Have the Right Tools to Hand

The other crucial resource for efficiently building agile robots is the tools. When it comes to specific equipment, Thorsten mentions various items for different stages of AMR production:

  • For organisation: To effectively structure and manage tasks and processes, we use different software such as operations1, Assemblio, and Jira.
  • For assembling: Depending on the task, the team may use various tools. Usually, these include assembly tables, cranes, and torque screwdrivers.
  • For calibration and testing: We have equipment and calibration benches for post-assembly configuration and software packages to optimise the performance of the AMRs. We also use the self-developed Robot UI for several End-of-Line (EoL) processes to ensure the proper functionality of the AMRs.
An image of different AMR production tools such as wrenches, pliers, and screwdrivers hanging on a tool board.
Some of the many tools at the AMR production site of the arculus office

7. Have an Awesome AMR - the arculee M

Once the arculee M is built and functional, it is ready to transport materials in warehouses, supporting the automation of the intralogistics industry. The most impressive specs of the arculee M include:

  • Flexibility with transporting of pallets
  • More room for higher load capacity, i.e. 1,300 kg
  • Effective obstacle avoidance system
  • VDA 5050 compatibility

If you want to adopt the arculee M as a solution in your facility, please visit Jungheinrich for more information.

arculee M (an AMR) standing in the testing area of the arculus office
The arculee M in the testing area of the new arculus office

In short, arculus with its continuous commitment to innovation, assembles and integrates the arculee M as an efficient Autonomous Mobile Robot for intralogistics. To sustain this success, it's essential to remain agile and responsive to the ever-changing technological advancements and dynamic demands of the intralogistics industry. By continually adapting, evolving, and optimising our processes, Thorsten’s team turns these challenges into opportunities, advancing our production standards and contributing to the ongoing advancements in the field.

CONTACT

arculus GmbH
Balanstrasse 73 
Haus 10
D-81541 München

info@arculus.de