Scoreboard using Outdoor P10 LED Display with Wifi

Scoreboard using Outdoor P10 LED Matrix Display and Update Scores Remotely using Smartphone

The Electronic scoreboard is one of the most important gadgets anybody can have during any sports tournament.

Old manual scoreboard using conventional methods are very time consuming and Error-prone, hence a computerized scoreboard becomes necessary where the display unit needs to be changed in real-time.

This will be building a Bluetooth controlled wireless scoreboard in which we can change the score on the board just by using an android application.

The brain of this project is an Arduino Nano, and for the display part, we will be using a P10 LED matrix to show the score remotely in real-time.

The P10 LED Display Matrix

A P10 LED Matrix Display is the best way available to make a LED advertisement board for outdoor or indoor use. This panel has a total of 512 high brightness LEDs mounted on a plastic housing designed for best display results.

It also comes with an IP65 rating for waterproofing making it perfect for outdoor use. With this, you can make a big LED signboard by combining any number of such panels in any row and column structure.

Our module has a size of 32*16, which means that there are 32 LEDs in each row and 16 LEDs in each column. So, there is a total of 512 LEDs present in each led signboard.

Other than that, it has an IP65 rating for waterproofing, it can be powered by a single 5V power source, it has a very wide viewing angle, and the brightness can go up to 4500 nits.

So, you will be able to see it clearly in brought daylight. Previously we have also used this P10 Display with Arduino to build a simple LED Board.

Pin Description of P10 LED Matrix:

This LED display board uses a 10-pin mail header for input and output connection, in this section, we have described all the necessary pins of this module.

Also, you can see there is an external 5V connector in the middle of the module which is used to connect the external power to the board.

Enable: This pin is used to control the brightness of the LED panel, by giving a PWM pulse to it.
A, B: These are called multiplex select pins. They take digital input to select any multiplex rows.

Shift clock (CLK), Store clock (SCLK), and Data: These are the normal shift register control pins. Here a shift register 74HC595 is used.

P10 LED Display Module to Arduino:

Connecting the P10 matrix display module to Arduino is a very simple process, in our circuit, we configured pin 9 of the Arduino as Enable pin, Pin 6 as Pin A, Pin 7 as pin B, Pin 13 is the CLK, Pin 8 is the SCLK, Pin 11 is the DATA, and finally Pin GND is the GND pin for the module and Arduino, a complete table below explain the pin configuration clearly.

IMPORTANT: 

Connect the power terminal of the P10 module to an external 5V power source, because 512 LEDs will consume a lot of power. It is recommended to connect a 5V, 3 Amp DC power supply to a single unit of P10 LED module.

Components Required:

As this is a very simple project, the components requirements are very generic, a list of required components are shown below, you should be able to find all of the listed material in your local hobby store.

1. Arduino Nano
2. P10 LED matrix display
3. 5V, 3 AMP SMPS
4. HC-05 Bluetooth Module

Circuit Diagram for Arduino Scoreboard:

The working of the circuit is very simple, we have an Android application and a Bluetooth module, to successfully communicate with the Bluetooth module, you have to pair the HC-05 module with the android application.

Once we are connected, we can send the string that we want to display, once the string is sent, Arduino will process the string and convert it to a signal that the internal 74HC595 shift resistor can understand, after the data is sent to the shift resistor, its ready to display.

Smartphone Controlled Scoreboard – Testing

After uploading code to Arduino, it’s time to test the project. Before that, the android application needs to be installed on our smartphone.

You can download the P10 Score Board application from the given link. Once installed, open the app and the home screen should look like the below image.

Click on the SCAN button to add the Bluetooth module with App. This will show the list of paired Bluetooth devices of the phone.

If you haven’t paired the HC-05 Bluetooth module before, pair the module using your phone’s Bluetooth setting and then do this step.Click on “HC-05” as this is the name of our Bluetooth module used here. After clicking on it, it will show connected on the screen.

Then we can proceed with the scoreboard.

Click on any button between “Home” & “Away” as shown in the App. If the Home button is selected, the score of Home will be incremented in the P10 display.

Similarly, if the Away button is selected, the score of Away will be incremented. The below image shows how the final screen looks.

Download Library:

  1. TimerOne
  2. DMD

#include <SPI.h>
#include <DMD.h>
#include <TimerOne.h>
#include “SystemFont5x7.h”
#include “Arial_black_16.h”
#define ROW 1
#define COLUMN 1
#define FONT Arial_Black_16
char input;
int a = 0, b = 0;
int flag = 0;
char cstr1[50];
DMD led_module(ROW, COLUMN);
void scan_module()
{
led_module.scanDisplayBySPI();
}
void setup()
{
Serial.begin(9600);
Timer1.initialize(2000);
Timer1.attachInterrupt(scan_module);
led_module.clearScreen( true );
}
void loop()
{
if(Serial.available() > 0)
{
flag = 0;
input = Serial.read();
if (input == ‘a’ && flag == 0)
{
flag = 1;
a++;
}
else if (input == ‘b’ && flag == 0)
{
flag = 1;
b++;
}
else;
}
(String(“HOME:”)+String(a) + String(” – “) + String(“AWAY:”)+String(b)).toCharArray(cstr1, 50);
led_module.selectFont(FONT);
led_module.drawMarquee(cstr1,50, (32 * ROW), 0);
long start = millis();
long timming = start;
boolean flag = false;
while (!flag)
{
if ((timming + 30) < millis())
{
flag = led_module.stepMarquee(-1, 0);
timming = millis();
}
}
}

Subramanian
Subramanian

Subramanian MK, currently serving as a workshop instructor at Sakthi Polytechnic College, Erode Tamil Nadu. With a career spanning 25 + years, Subramanian MK has dedicated himself to advancing knowledge in Electronics and Communication Engineering (ECE). His passion for exploring new technologies has led to the development of numerous projects, showcasing expertise in IoT and PCB design.

Articles: 510

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

×

Hi, How can I help you?

×