Flappy Board for iPhone · iPad · Apple TV

The retro flip board
for your Apple TV.

Authentic mechanical split-flap animation, driven by your home automation, REST API, or the companion controller app. Free to start.

Download on the App Store
Local REST API Home Assistant Any HTTP client Python clients on GitHub Free to start

Made for the big screen

Your TV,
transformed.

Flappy Board turns your Apple TV into the iconic mechanical departure board from airports and train stations worldwide. Every character tile flips independently — each one its own little machine, cycling through the alphabet before landing on its target.

Mount it in your home, run it on a lobby screen, or just let it clock away in the corner. It looks different every time you glance at it.

iPad

Features

Built to flip. Built to hack.

Authentic animation

Every character tile flips independently, cycling through the alphabet at a configurable speed. The satisfying mechanical rhythm is the whole point.

Built-in demos

Watch a live departure board fill with flights and airline logos, or display current weather conditions — right out of the box, no setup required.

Local HTTPS API

Flappy Board runs a secure server right on your device. Any script, app, or automation that can send an HTTP request can update your board.

Controller app

Pair a companion iPhone or iPad app by scanning a QR code. Send messages from across the room — or across the world — over your local network.

Fully configurable

Adjust rows, columns, character set, flip speed, fonts, and colors. Or choose from built-in themes — Classic, Amber, Ice, and Dark.

Home automation

Native Home Assistant integration. Show package arrivals, sports scores, calendar events, or anything your home knows.

Multi-platform

iPhone. iPad. Apple TV.

One app, every screen in your home. The same authentic animation — scaled to whatever you have.

Flappy Board running on Apple TV Apple TV 4K
Flappy Board running on iPad Pro iPad Pro
Flappy Board running on iPhone 17 Pro Max iPhone 17 Pro Max

Pricing

Free to flip.
Built to hack.

Download for free and explore the built-in demos. Unlock the full API when you're ready to connect it to everything.

Free

$0

forever

  • Authentic split-flap animation
  • Built-in demos (flights, weather)
  • Multiple color themes
  • Local HTTPS API
  • Controller app pairing
  • Home Assistant integration
  • Transition animations
  • Custom branding & images

Pro

License

key activation

  • Everything in Amateur
  • Transition animations
  • Custom header & footer images
  • Board branding & styling
  • Priority support

Download

Get it on the App Store.

Three free downloads. Install the board on your Apple TV, iPhone, or iPad — then grab the Controller to drive it from your pocket.

Open API

Everything connects.

Flappy Board runs a local HTTPS server on your device with a clean REST API. If it can send an HTTP request, it can update your board.

Python clients for flights, weather, Slack, PagerDuty, Bluesky, and more are available on GitHub. Or write your own in any language — the API is documented and straightforward.

flappyboard.py
# Send a message to your board import requests board = { "url": "https://192.168.1.100:8443", "token": "YOUR_BEARER_TOKEN" } requests.post( board["url"] + "/message", json={"text": "GOOD MORNING"}, headers={ "Authorization": f"Bearer {board['token']}" } )