ZadeNor AI
Back to Blog
Robotics & Automation

This Soft Robot Is 100% Edible, Including the Battery

November 25, 2025
5 min
2,233 views
By ZadeNor AI Team
This Soft Robot Is 100% Edible, Including the Battery

This Soft Robot Is 100% Edible, Including the Battery

Edible Robots: A Breakthrough in Soft Robotics

While traditional robots are made of metal and plastic, a new generation of robots is being designed to be edible. These soft robots are not only made of food-grade materials but also have the ability to be consumed by humans and animals alike. In a recent breakthrough, researchers from the Laboratory of Intelligent Systems at EPFL in Switzerland have developed an entirely ingestible robot capable of controlled actuation.

The Edible Battery

The key to this innovation lies in the development of an edible battery. The battery is made of gelatin and wax, which store chemical energy in chambers containing liquid citric acid and baking soda. These two substances are commonly found in food and are safe for human consumption. The citric acid is kept separate from the baking soda by a membrane, and when pressure is applied to the chamber containing the acid, the membrane is punctured, allowing the acid to slowly drip onto the baking soda. This reaction generates CO2 gas and sodium citrate, a common ingredient in many foods.

# Edible battery reaction
citric_acid = "C6H8O7"
baking_soda = "NaHCO3"
reaction = citric_acid + " + " + baking_soda + " -> CO2 + NaC6H7O7"
print(reaction)

The Edible Actuator

The edible actuator is a soft robotic design that uses interconnected gas chambers on top of a slightly stiffer base. When pressurized, the actuator bends, allowing for controlled movement. To make the actuator wiggle, the gas must be cyclically released. This is achieved through the use of an ingestible valve, which operates based on the principle of snap-buckling.

// Edible valve code
int valve_open = 0;
int pressure = 0;

void setup() {
  pinMode(valve_open, OUTPUT);
  pinMode(pressure, INPUT);
}

void loop() {
  if (pressure > 100) {
    valve_open = 1;
  } else {
    valve_open = 0;
  }
  digitalWrite(valve_open, valve_open);
  delay(100);
}

The Edible Valve

The edible valve is the key innovation in this breakthrough. It operates based on the principle of snap-buckling, which means that it is happiest in one shape (closed), but when under enough pressure, it rapidly snaps open and then closed again once the pressure is released. This allows for the cyclic release of gas, enabling the actuator to wiggle.

Applications

The potential applications of this technology are vast. One potential use case is to provide nutrition or medication for elusive animals, such as wild boars. The edible robot could be designed to mimic the movement and smell of a live animal, attracting the wild boar and allowing for targeted delivery of medication or nutrients.

Conclusion

The development of an entirely ingestible robot capable of controlled actuation is a significant breakthrough in soft robotics. The use of edible materials and the development of an edible battery and valve system have opened up new possibilities for the design of robots that can be consumed by humans and animals alike. The potential applications of this technology are vast, and further research is needed to explore its full potential.


Source: https://spectrum.ieee.org/soft-edible-robot

About the Author

ZadeNor AI Team is a leading expert in ROBOTICS & AUTOMATION, contributing to cutting-edge research and development in the field.

Related Posts

Video Friday: Atlas Versus a Fridge

Video Friday: Atlas Versus a Fridge

Video Friday is your weekly selection of awesome robotics videos, collected by your friends at IEEE Spectrum robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please send us your events for inclusion.ICRA 2026: 1–5 June 2026, VIENNARSS 2026: 13–17 July 2026, SYDNEYSummer School on Multi-Robot Systems: 29 July–4 August 2026, PRAGUEActuate 2026: 18–19 August 2026, SAN FRANCISCOEnjoy today’s videos! Just months after its debut, Atlas is proving why it is the world’s most capable and dynamic humanoid robot, ready for real work. Lifting a mini-fridge is a feat of strength, but the true breakthrough is in the underlying reinforcement learning and controls systems. The robot is learning to navigate real world adaptability: handling heavy objects by bracing and accounting for the mass and inertia; using whole-body control, not just hands to maneuver; and demonstrating superhuman range of motion and balance. This marks...

396
5 min
Home Robot Safety Is All About Relationships

Home Robot Safety Is All About Relationships

The International Organization for Standardization (ISO) is updating its 12-year-old safety requirements for personal care robots. A lot has happened since the last revision, both on the technology side and with researchers’ understanding of safety for humans collaborating with domestic robots. The proposed ISO update addresses hazard identification, risk assessment, and different use scenarios. It does not, however, set limits, propose testing methods, or have enforcement mechanisms that might address the complexities of human-robot collaboration. And that is a problem, argues technology policy researcher Jae-Seong Lee of the Electronics and Telecommunications Research Institute in Daejeon, South Korea.Why is the next revision of ISO 13482 a big deal?Jae-Seong Lee: The standard is moving into final approval at a moment when domestic humanoid robot makers are shifting from lab prototypes to products aimed at real homes, real caregivers, and real families. That matters because the standard does more than specify geometry and...

133
5 min
Video Friday: Extreme Omnidirectional Robot

Video Friday: Extreme Omnidirectional Robot

Video Friday is your weekly selection of awesome robotics videos, collected by your friends at IEEE Spectrum robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please send us your events for inclusion.ICRA 2026: 1–5 June 2026, VIENNARSS 2026: 13–17 July 2026, SYDNEYSummer School on Multi-Robot Systems: 29 July–4 August 2026, PRAGUEActuate 2026: 18–19 August 2026, SAN FRANCISCOEnjoy today’s videos! What is the right number of legs for a robot? Two? Four? No, the answer is obviously all of them. All of the legs.[ Argus ]Sigh, yet another skill that I as a soccer-playing human should have but a robot has instead: the rabona.[ Boston Dynamics ]Robots are rapidly becoming part of our everyday lives, from drones and industrial machines to home assistants and humanoid robots. As their presence continues to grow, an important question arises: How can we choose the right robot—not...

172
5 min