| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>Standby for Reachy Mini</title> |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| <link |
| href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&display=swap" |
| rel="stylesheet" |
| /> |
| <link rel="stylesheet" href="./style.css" /> |
| </head> |
| <body> |
| <main class="page"> |
| <section class="hero"> |
| <p class="eyebrow">Reachy Mini Ambient App</p> |
| <h1>Standby</h1> |
| <p class="lede"> |
| A quiet idle mode for Reachy Mini. The antennas keep moving with the same |
| gentle breathing rhythm as the conversation app, and every 20 seconds the |
| robot surprises you with a random dance or emotion. |
| </p> |
| <div class="chips"> |
| <span>No UI</span> |
| <span>Idle breathing</span> |
| <span>Random dances</span> |
| <span>Random emotions</span> |
| </div> |
| </section> |
|
|
| <section class="grid"> |
| <article class="card"> |
| <h2>What It Does</h2> |
| <p> |
| Runs a lightweight motion loop only. No speech pipeline, no camera, |
| no profiles, no extra controls. |
| </p> |
| </article> |
|
|
| <article class="card"> |
| <h2>Motion Sources</h2> |
| <p> |
| Reuses the conversation app's idle breathing feel plus the same dance |
| and emotion libraries used across Reachy Mini examples. |
| </p> |
| </article> |
|
|
| <article class="card"> |
| <h2>Install Flow</h2> |
| <p> |
| Publish this repository as a Hugging Face Space, then install it from |
| the robot's app manager like any other Reachy Mini Python app. |
| </p> |
| </article> |
| </section> |
| </main> |
| </body> |
| </html> |
|
|