Skip to content

Share URL's in presentational slides from a Physical Web Eddystone beacon, making the current Reveal.js slide link only a tap away for the audience.

License

Notifications You must be signed in to change notification settings

dermike/slide-beacon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

slide-beacon

Minimum viable prototype for sharing URL's in presentational slides with a Physical Web beacon, making the current Reveal.js slide link only a tap away for the audience.

Prerequisites

This prototype consists of two parts:

  • server.js, a Node.js app currently only working on Mac OSX (Yosemite) and Linux, listening for incoming URLs over websockets to broadcast using Bluetooth, making them instantly available for the audience via Physical Web. Needs to run in your terminal or on an external Raspberry Pi while presenting to be able to create the actual Eddystone URL beacon. Can also be used together with this link sharing Eddystone bookmarklet.
  • revealjs-plugin/slide-beacon.js, plugin for Reveal.js HTML presentational framework, that sends marked up URLs in your slides over websockets to the server part for broadcast.

Note: There's also the option of using this desktop app for OSX found here: electron-slide-beacon.

Install

Linux needs these dependencies for Bluetooth:

sudo apt-get install bluetooth bluez-utils libbluetooth-dev

On a Mac you need Xcode and its Command Line Tools to build the Bluetooth dependencies. You can find this under the menu Xcode -> Preferences -> Downloads

Install dependencies:

npm install

Start listening for websocket connection from your presentation with:

sudo node server.js

Note: sudo only needed on Linux

Reveal.js plugin

Add as dependency:

dependencies: [
  { src: 'plugin/slide-beacon.js' }
]

Every section with a data-url attribute will be sent to the beacon server using websockets and broadcast. IP or hostname to the server needs to be provided when presentation is loaded. localhost if presenting from a Mac/Linux machine, or the ip to the Raspberry Pi/other external device.

<section data-url="https://your.url">

Note that a Physical Web beacon only can broadcast URL's up to 18 characters. Use URL shorteners when needed.

TODO

  • Auto-detect URL's in Reveal.js slides instead of using data-url attribute
  • Make stand alone web client to control the beacon
  • Make it work with other presentational software

About

Share URL's in presentational slides from a Physical Web Eddystone beacon, making the current Reveal.js slide link only a tap away for the audience.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published