F1-Arduino-Notifications

An ESP32 project to display and notify of when F1 races are and what time the sessions start at in your local timezone.

image

image

image

This project can flashed directly from a webpage, so can be setup in minutes!

Features

  • Connects to your Wifi to automatically fetch data about the next race
  • When the race is more than a week away, it will display the date of the next race (with an image on the "Cheap Yellow Display")
  • When it's race week, it will display the start time of all the sessions in your local timezone
  • It will send you notification on Telegram on the Monday of race week with the start times.

This project is a Work in Progress!

Help Support what I do!

If you enjoy my work, please consider becoming a Github sponsor!

Hardware Required

This project is designed to make use of basically ready to go hardware, so is very easy to get up and running

Currently this project runs on two types of hardware:

"Cheap Yellow Display" (CYD)

An ESP32 With Built in 320x240 LCD with Touch Screen (ESP32-2432S028R), buy from wherever works out cheapest for you:

Matrix panel

It's built to work with the ESP32 Trinity, an open source board I created for controlling Hub75 Matrix panels, but it will does work with any ESP32 that breaks out enough pins.

The display it uses is a 64x64 HUB75 Matrix Panel.

All the parts can be purchased from Makerfabs.com:

* = Affilate Link

BYOD (Bring your own display)

I've tried to design this project to be modular and have abstracted the display code behind an interface, so it should be pretty easy to get it up and running with a different type of display.

Project Setup

These steps will only need to be run once.

Telegram Setup

To get notified about the races, you will need some things on Telegram.

  • Install Telegram and setup an account.
  • Search for a user called "botFather" and follow instructions to create a new bot. Keep note of this bot token
  • Start the chat with the created bot.
  • Search for a user called "myIdBot" and follow instructions to get your chat ID. Keep note of the chatID.

Web Flash

This project can be flashed directly from your browser here (Chrome & Edge only)

  • Click the "CYD" button for the "Cheap Yellow Display"
  • or Click the "Matrix" button for the ESP32 Trinity

This webflash code is automatically built from the main branch of this repo, so it will always be up to date.

Note: If you want to program this project yourself without the webflash, follow the Code steps below.

WiFiManager

In order to enter your wifi details, the project will host it's own wifi network. Connect to it using your phone.

  • SSID: f1Thing
  • Password: nomikey1

You should be automatically redirected to the config page.

  • Click Config
  • Enter your WIfi details
  • Enter your Time Zone - More info here
  • Enter your Bot Token that you retrieved at the earlier step.
  • Enter your Chat ID that you retrieved at the earlier step.
  • You can leave the other options
  • Click save

Note: If you ever need to get back into WiFiManager, click reset button twice.

The project should now be setup and start displaying the next race details!

Code

If you want to program the devices yourself using the Arudino IDE, you will need to do the following to get it working

The following libraries need to be installed for this project to work:

Common Libraries

Library Name/Link Purpose Library manager
WifiManager - By Tzapu Captive portal for configuring the WiFi Yes ("WifiManager"
ESP_DoubleResetDetector Detecting double pressing the reset button Yes ("ESP_DoubleResetDetector")
ArduinoJson For parsing JSON Yes ("Arduino Json")
ezTime For handling timezones Yes ("eztime")
UniversalTelegramBot Telegram bots for your ESP Yes ("UniversalTelegramBot")
FileFetcher For fetching files/images from the web No

Cheap Yellow Display Specific libraries

Library Name/Link Purpose Library manager
TFT_eSPI For controlling the LCD Display Yes ("tft_espi")
PNGdec For decoding png images Yes ("PNGdec")

Matrix Panel Specific libraries

Library Name/Link Purpose Library manager
ESP32-HUB75-MatrixPanel-I2S-DMA For controlling the LED Matrix Yes ("ESP32 MATRIX DMA")
Adafruit GFX library Dependancy of the Matrix library Yes ("Adafruit GFX")

Cheap Yellow Display Display Config

The CYD version of the project makes use of TFT_eSPI library by Bodmer.

TFT_eSPI is configured using a "User_Setup.h" file in the library folder, you will need to replace this file with the one in the DisplayConfig folder of this repo.

Display Selection

At the top of the F1-Notifications.ino file, there is a section labeled "Display Type", follow the instructions there for how to enable the different displays.

Note: By default it will use the Cheap Yellow Display