2.2 KiB
2.2 KiB
Installing the Kiosk Dashboard
Step 1: Copy Dashboard YAML
- Open Home Assistant
- Go to Settings > Dashboards
- Click + ADD DASHBOARD
- Choose Start with an empty dashboard
- Name it:
Kiosk Dashboard - Click the ⋮ (three dots) menu > Edit Dashboard
- Click ⋮ again > Raw configuration editor
- Copy the contents of
dashboard-kiosk-improved.yamland paste it - Click SAVE
Step 2: Set Up RSS Feed for Fox News
Option A: Using HACS (Recommended)
- Install HACS if not already installed
- Go to HACS > Integrations
- Search for "RSS Feed" or "Feedparser"
- Install the integration
- Restart Home Assistant
- Add to
configuration.yaml:rss_feed_template: fox_news_breaking: url: "https://feeds.foxnews.com/foxnews/latest" scan_interval: 300
Option B: Manual RSS Feed Setup
- Install
feedparsercustom component - Add to
configuration.yaml(seesetup-rss-fox-news.yaml) - Restart Home Assistant
Step 3: Enable Auto-Scroll
Option A: Install Auto-Scroll Card (Best)
- Install via HACS:
auto-scroll-card - Update dashboard YAML to use
type: custom:auto-scroll-card - Configure scroll speed
Option B: CSS Injection (Quick)
Add this to your dashboard's card-mod style or use a custom card:
card_mod:
style: |
ha-card {
animation: scroll 120s linear infinite;
}
@keyframes scroll {
0% { transform: translateY(0); }
100% { transform: translateY(-100%); }
}
Option C: Browser Console (Temporary)
Open browser console (F12) and run:
setInterval(() => window.scrollBy(0, 1), 50);
Step 4: Customize Entities
Edit the dashboard YAML to:
- Add/remove entities
- Adjust card sizes
- Change colors and fonts
- Add more sections
Step 5: Set as Default Dashboard
- Go to Settings > Dashboards
- Find "Kiosk Dashboard"
- Click ⋮ > Set as default on this device
Troubleshooting
- RSS not showing: Install RSS feed integration first
- Auto-scroll not working: Install
auto-scroll-cardor use CSS - Cards too small: Increase font-size in card-mod styles
- Missing entities: Check entity IDs match your setup