- Add API specification documentation - Add system specification document - Add UI mockups and documentation - Add utility modules (wifi)
137 lines
4.2 KiB
HTML
137 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LED Driver - UI Mockups</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
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;
|
|
padding: 40px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
width: 100%;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
color: white;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.header p {
|
|
font-size: 1.25rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.mockups-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
.mockup-card {
|
|
background: white;
|
|
border-radius: 16px;
|
|
padding: 32px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
|
|
transition: all 0.3s;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
}
|
|
|
|
.mockup-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.mockup-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.mockup-title {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: #667eea;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.mockup-description {
|
|
color: #666;
|
|
line-height: 1.6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>LED Driver UI Mockups</h1>
|
|
<p>Example user interfaces for the LED driver system</p>
|
|
</div>
|
|
|
|
<div class="mockups-grid">
|
|
<a href="dashboard.html" class="mockup-card">
|
|
<div class="mockup-icon">📊</div>
|
|
<div class="mockup-title">Dashboard</div>
|
|
<div class="mockup-description">
|
|
Main control panel for managing LED patterns, brightness, colors, and device status.
|
|
</div>
|
|
</a>
|
|
|
|
<a href="pattern-selector.html" class="mockup-card">
|
|
<div class="mockup-icon">🎨</div>
|
|
<div class="mockup-title">Pattern Selector</div>
|
|
<div class="mockup-description">
|
|
Visual interface for selecting from available LED patterns: On, Off, Blink, Chase, Circle, Pulse, Rainbow, and Transition.
|
|
</div>
|
|
</a>
|
|
|
|
<a href="device-management.html" class="mockup-card">
|
|
<div class="mockup-icon">🔧</div>
|
|
<div class="mockup-title">Device Management</div>
|
|
<div class="mockup-description">
|
|
Manage connected LED devices and groups. View device status, assign groups, and configure device settings.
|
|
</div>
|
|
</a>
|
|
|
|
<a href="settings.html" class="mockup-card">
|
|
<div class="mockup-icon">⚙️</div>
|
|
<div class="mockup-title">Settings</div>
|
|
<div class="mockup-description">
|
|
Comprehensive settings panel for configuring LED pin, color order, pattern parameters, and network settings.
|
|
</div>
|
|
</a>
|
|
|
|
<a href="presets.html" class="mockup-card">
|
|
<div class="mockup-icon">💾</div>
|
|
<div class="mockup-title">Presets</div>
|
|
<div class="mockup-description">
|
|
Save, load, and manage preset configurations with pattern, colors, delay, and all N1-N8 parameters for quick pattern switching.
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|