File size: 2,456 Bytes
4efaf4f 64faf24 4efaf4f 64faf24 4efaf4f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | <!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> |