Desmond-Dong's picture
Reorganize file structure for Reachy Mini app
64faf24
raw
history blame
2.46 kB
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reachy Mini Home Assistant Voice Assistant</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
margin: 0;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
padding: 40px;
max-width: 600px;
text-align: center;
}
h1 {
color: #333;
margin-bottom: 20px;
}
p {
color: #666;
line-height: 1.6;
margin-bottom: 15px;
}
.steps {
text-align: left;
background: #f5f5f5;
padding: 20px;
border-radius: 10px;
margin: 20px 0;
}
.steps ol {
margin: 0;
padding-left: 20px;
}
.steps li {
margin-bottom: 10px;
}
a {
color: #667eea;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>🤖 Reachy Mini Home Assistant Voice Assistant</h1>
<p>这个应用需要在 Reachy Mini 机器人上运行。</p>
<div class="steps">
<strong>安装步骤:</strong>
<ol>
<li>在 Reachy Mini 的应用管理界面</li>
<li>点击 "Install from Hugging Face"</li>
<li>搜索并安装 <code>reachy-mini-ha-voice</code></li>
<li>安装完成后,点击 "Run" 启动应用</li>
<li>在 Home Assistant 中添加 ESPHome 集成</li>
</ol>
</div>
<p>应用启动后,ESPHome 语音助手将在端口 6053 上运行,Home Assistant 会自动发现设备。</p>
<p><a href="https://huggingface.co/spaces/djhui5710/reachy_mini_ha_voice">查看文档</a></p>
</div>
</body>
</html>