Add sleep mode and documentation

- Sleep/wake endpoints for Home Assistant webhooks
- Sleep state: dim ( -_-)zzZ with slow breathing animation
- Updated CLAUDE.md with full technical reference
- Added README.md with user guide and HA integration examples

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-02 21:43:25 -06:00
parent af4ccb9a35
commit 53e6f0bcdd
4 changed files with 238 additions and 30 deletions

View File

@@ -172,6 +172,22 @@
opacity: 0.8;
}
}
/* Sleeping animation - very slow, subtle breathing */
.sleeping {
animation: sleep 6s ease-in-out infinite;
}
@keyframes sleep {
0%, 100% {
opacity: 0.4;
transform: scale(1);
}
50% {
opacity: 0.2;
transform: scale(0.98);
}
}
</style>
</head>
<body>