Skip to content

An ESP8266 and SSD1306 device to display your favourite attraction waiting time

Notifications You must be signed in to change notification settings

IvanMazzoli/Queue-Times-Display

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Queue-Times-Display

stop_display

An ESP8266 and SSD1306 device to display your favourite attraction waiting time.

Required Hardware

Serverless Version (Queue_Times_Display.ino)

This release was created for low specs devices with less on board memory available. To use this version you need to set the following information in the script:

  • Your WiFi network name and password (lines 17, 18);
  • The correct URL for the park queues (line 176);
  • The JSON path of your ride (line 216).

To obtain the waiting data it is necessary to extract the JSON path from the Queue-Times.com API at the following address:

Let's take Phantasialand's "Taron" attraction for example. First of all we need to obtain the park ID from the first link, in the case of Phantasialand it is 56. We then replace it within the second link to obtain the link with the waiting times in the park:

We must now recover the JSON path for Taron, that is:

JsonObject path = doc["lands"][5]["rides"][3];

Let's analyze the path to understand how to adapt it to another park. The first element is the root of the JSON document, "lands", which is an array of all the various areas of the selected park. From this array we must then select the land that contains Taron, Mystery, with index 5. We therefore obtain from the "rides" array the index of the Taron attraction, in our case 3.

Webserver Version (coming soon)

This version, still in development, integrates a web server that allows you to select the network to connect to and the attraction to monitor without having to connect the device to a PC and use the Arduino IDE to update the data.

Sources

About

An ESP8266 and SSD1306 device to display your favourite attraction waiting time

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages