Connect your physical world to your digital displays. Sensors, buttons, temperature monitors, and external systems now control your signage in real-time.
Real-time communication from hardware triggers to screen content
A complete ecosystem for connected digital signage
Your cloud-based command center. Design presentations, manage players, and configure IoT triggers from anywhere.
The local watchdog and API gateway. Receives IoT triggers and translates them into player commands.
The display engine. Renders content and responds to commands from SignService in real-time.
Everything you need to build IoT-connected signage
Real-world applications powered by connected signage
Automatically switch content based on floor level. Show relevant ads and information for each floor's audience.
GPIO Floor SensorOverride all screens with emergency evacuation routes when fire alarm triggers. Safety first.
Alarm System APIPhysical buttons trigger different content scenes. Let users browse products or services hands-on.
GPIO ButtonsShow real-time temperature from sensors. Promote cold drinks when hot, warm coffee when cold.
I2C Temp SensorSimple HTTP calls control your signage
# Switch to emergency scene via curl curl -X POST http://localhost:9999/api/v1/command \ -H "Content-Type: application/json" \ -d '{ "command": "switchScene", "sceneName": "fire-evacuation", "duration": 0 }'
import RPi.GPIO as GPIO import requests def on_button_press(channel): requests.post( "http://localhost:9999/api/v1/command", json={ "command": "switchScene", "sceneName": "promo-display" } ) GPIO.add_event_detect(17, GPIO.RISING, callback=on_button_press)
// Node.js temperature-based content switching const axios = require('axios'); const sensor = require('node-dht-sensor'); setInterval(async () => { const { temperature } = sensor.read(22, 4); const sceneName = temperature > 25 ? 'cold-drinks-promo' : 'hot-coffee-promo'; await axios.post('http://localhost:9999/api/v1/command', { command: 'switchScene', sceneName, transitionType: 'fade' }); }, 60000); // Check every minute
Start building IoT-powered digital signage today - completely FREE
Get Started FREE Read Quick Start GuideCheckout live examples of Digital Signage presentations. The SignPlayer can run everywhere, on Android, Windows, Mac, iPad and even inside your web browser
View MoreFind out why people call us “the world’s most popular digital signage platform”
View More