All videos

    Free download

    Family Dashboard setup checklist (PDF)

    The exact 6-step checklist to build this free DAKboard alternative on your TV — print it, work through it, done in 30 minutes.

    Download the checklist

    Build a Free Family Dashboard on Your TV with Claude AI & Google Sheets

    Turn an idle TV into a smart family dashboard for free — schedules, meals, to-dos, and event countdowns — built in 30 minutes with Claude AI, Google Sheets, Apps Script, and Netlify.

    Share this video

    Dedicated family displays like Skylight, DAKboard, and Hearth Display cost hundreds of dollars up front and often add a monthly subscription. This video shows how to skip all of that and turn an idle TV — in our case the dining room TV — into a smart, automated family dashboard for free, using Claude AI to design it, Google Sheets to power it, Google Apps Script to bridge the two, and Netlify to host it. The whole thing went from idea to live screen in about 30 minutes, without writing any code by hand.

    The best free DAKboard alternative (and Skylight Calendar alternative)

    If you're searching for a DAKboard alternative or a Skylight Calendar alternative, this is it: same ambient family display — calendar, meals, to-dos, event countdowns — on a screen you already own, for $0. DAKboard charges for hardware plus a subscription for premium layouts. Skylight Calendar locks you into a 15" or 27" frame and an annual plan to unlock features. Hearth Display is the most expensive of the three. Our DIY build runs on any TV, Chromecast, Fire Stick, or Raspberry Pi, was designed in 30 minutes by Claude AI, and pulls live data from a Google Sheet anyone in the family can edit. No hardware purchase, no subscription, no lock-in.

    Why a DIY family dashboard beats Skylight, DAKboard, and Hearth

    Off-the-shelf family displays solve a real problem — ambient information at a glance — but they lock you into their hardware, their layout, and usually a subscription. A TV you already own plus a few free tools gives you a bigger screen, full design control, and zero recurring cost. You also get to shape it around the way your family actually lives instead of fitting into someone else's template.

    What the dashboard shows

    Ambient information the whole family glances at all day: today's schedule, the competitive cheer calendar, the weekly meal plan, the running family to-do list, and countdowns to upcoming events. Anyone in the house can update it from their phone, and the TV reflects the change within a minute — no remote, no app, no pulling up a calendar.

    The free tech stack

    Claude AI designs and builds the interface from a plain-English description and a photo of the room. Google Sheets stores the data across tabs (Schedule, Cheer, Meals, To-Do, Events) so anyone in the family can edit from their phone. Google Apps Script turns the sheet into a JSON endpoint the dashboard can read. Netlify hosts the finished page for free on its own URL. Total cost: $0.

    Designed in 30 minutes with Claude AI

    No code was written by hand. The whole layout came from describing what we wanted to Claude AI and sharing a photo of the dining room so it could match the home's farmhouse aesthetic — colors, type, spacing, the works. Claude returned a clean HTML/CSS/JS dashboard that we tweaked in a couple of back-and-forth messages and shipped.

    How the live updates work

    The dashboard polls the Google Apps Script endpoint every 60 seconds. When someone updates a meal in the Meals tab, adds a cheer practice, or checks off a to-do from their phone, the TV picks it up on the next poll and re-renders — no manual refresh, no smart home hub, no extra services in the loop.

    Make it your own

    Swap the tabs to match your household. Sports schedules, school pickups, chore charts, birthday countdowns, shared shopping list — anything that lives in a Google Sheet can live on the TV. Because Claude AI built it from a description, you can ask it to redesign for a different room, a different style, or a different set of widgets in another short conversation.

    Build your own free family dashboard — step by step

    You'll need a TV (or any always-on screen with a browser), a Google account, a free Netlify account, and 30–45 minutes. No coding required.

    1. 1. Create the Google Sheet that powers the dashboard

      In Google Sheets, create a new spreadsheet and add one tab per widget you want on the TV: Schedule, Cheer, Meals, ToDo, Events. Put a clear header row at the top of each tab (e.g. Date | Time | Title | Notes). This sheet is the single source of truth — anyone in the family edits it from their phone.

    2. 2. Publish the Sheet as JSON with Google Apps Script

      In your sheet, open Extensions → Apps Script. Paste a small script that reads each tab and returns it as JSON, then deploy it as a Web App (Execute as: Me, Access: Anyone). Copy the Web App URL — that's the live data feed your dashboard will read.

      // Apps Script — Code.gs
      function doGet() {
        const ss = SpreadsheetApp.getActiveSpreadsheet();
        const tabs = ['Schedule', 'Cheer', 'Meals', 'ToDo', 'Events'];
        const data = {};
        tabs.forEach(name => {
          const sheet = ss.getSheetByName(name);
          if (sheet) data[name] = sheet.getDataRange().getValues();
        });
        return ContentService
          .createTextOutput(JSON.stringify(data))
          .setMimeType(ContentService.MimeType.JSON);
      }
    3. 3. Design the dashboard with Claude AI

      Open Claude, share a photo of the room the TV lives in, and describe the layout you want: 'Build a single-page family dashboard for a TV. Five widgets — today's schedule, cheer practice calendar, weekly meal plan, family to-do list, event countdowns. Match the farmhouse aesthetic in this photo. Read data from this URL every 60 seconds.' Paste your Apps Script Web App URL. Claude returns ready-to-deploy HTML, CSS, and JavaScript.

    4. 4. Host it on Netlify for free

      Save the file Claude gave you as index.html in a new folder. Go to netlify.com, drag the folder onto the Netlify dashboard, and it's live on a free *.netlify.app URL within seconds. No build step, no server, no monthly fee.

    5. 5. Display it full-screen on the TV

      Open the Netlify URL on whatever the TV runs — a smart TV browser, a Chromecast, an Apple TV, a $35 Fire Stick, or an old laptop/Raspberry Pi plugged into HDMI. Put the browser in full-screen mode and you're done. The dashboard polls the sheet every 60 seconds, so any edit from any family member shows up automatically.

    6. 6. Tweak it any time — just ask Claude

      Want a new widget? A different color palette? A holiday theme? Open the same Claude conversation, describe the change, and replace your index.html with the new version. Re-drag the folder onto Netlify and the TV updates on its next poll.

    Frequently asked questions

    What's the best free DAKboard alternative?
    A TV you already own, a Google Sheet, a short Google Apps Script, and a free Netlify page designed by Claude AI. You get the same ambient calendar/meals/to-do display as DAKboard on a bigger screen, with no hardware purchase and no subscription.
    Is there a free Skylight Calendar alternative?
    Yes — this build. Skylight locks you into a 15" or 27" frame plus an annual plan to unlock features. The DIY version runs on any TV or display you already have, costs $0, and the whole family can edit it from their phone via Google Sheets.
    DAKboard vs Skylight vs Hearth vs DIY — which should I pick?
    DAKboard is the most customizable paid option but charges for hardware plus premium layouts. Skylight is the most polished out of the box but the most locked-down. Hearth is the most expensive. The DIY route wins on price ($0), screen size (whatever TV you have), and flexibility — but you do the 30-minute setup yourself.
    Do I need to buy a digital calendar frame?
    No. Any TV, monitor, or old tablet works. Drive it with a smart TV browser, a Chromecast, an Apple TV, a $35 Fire Stick, or a Raspberry Pi — whatever you already have. That's the whole reason this is a free DAKboard and Skylight Calendar alternative.
    Will it look as nice as Skylight or DAKboard?
    Often nicer, because Claude AI designs it from a photo of your room to match your decor. You're not stuck with a single template — ask Claude for a farmhouse look, a modern dark theme, kid-friendly colors, or a holiday refresh any time.
    Does the family dashboard update automatically?
    Yes. The TV polls your Google Sheet every 60 seconds, so when anyone edits a meal, adds a practice, or checks off a to-do from their phone, the screen updates on its own — no remote, no refresh, no app.
    Do I need to know how to code to build this?
    No. Claude AI writes the dashboard from a plain-English description and a photo of your room. The only 'code' you touch is pasting a short Apps Script snippet into Google Sheets — and that's copy-paste.
    Can I show different widgets — not schedules and meals?
    Yes. The tabs in your Google Sheet can be anything — chores, shopping lists, sports schedules, birthday countdowns, school pickups, prayer reminders. Tell Claude what widgets you want and it redesigns for them.

    Join the conversation

    Like, comment, and shape the next video

    Every like and comment tells YouTube to show this to more people who need it. Pick a prompt below, drop it under the video, and Chad reads (and replies to) every one.

    • "This is the first AI video that actually made sense to me — thanks Chad!"

    • "Just tried this and it worked on the first go. Subscribed."

    • "Would love to see you break down your full workflow next."