Online Payment Soundbox

About the project

An ESP32-based device that can receive SMS regarding payments, print it on the LCD display and also call out the amount loud. The device includes a DFPlayer Mini module that has an SD card attached to it. Based on the amount received, the specific number is called out using the speaker.

Project info

Difficulty: Difficult

Platforms: ArduinoAutodeskEspressif

Estimated time: 2 weeks

License: MIT license (MIT)

Items used in this project

Hardware components

ESP32 WROOM MCU Module - 16MB (PCB Antenna) ESP32 WROOM MCU Module - 16MB (PCB Antenna) x 1
SIM900 GSM/GPRS Module SIM900 GSM/GPRS Module x 1
PAM8403 Audio Amplifier PAM8403 Audio Amplifier x 1
DFPlayer DFPlayer x 1
Gravity: I2C LCD1602 Arduino LCD Display Module (Blue) Gravity: I2C LCD1602 Arduino LCD Display Module (Blue) x 1
4 0hm 3W Speaker 4 0hm 3W Speaker x 1
Screw Terminals 2.54mm Pitch 2-Pin Screw Terminals 2.54mm Pitch 2-Pin x 1
AMS1117-3.3V Regulator AMS1117-3.3V Regulator x 1
220uH Inductor 220uH Inductor x 1
0805 Red 0805 Red x 1

View all

Software apps and online services

Arduino IDE Arduino IDE
Fusion 360 Fusion 360

Hand tools and fabrication machines

3D Printer 3D Printer x 1
Soldering Iron Soldering Iron x 1
USB Cable USB Cable x 1

Story

Description:

In India, online payment has become an integral part of business merchants. Right from small-scale groceries to shopping malls, we can pay for everything using UPI(Internet banking). The only difficulty faced by shop owners is that they cannot check each and every transaction that happens on their mobile phones. 

The proposed solution is a device that can notify you when a new payment has been received, and also call out the exact amount using a speaker. In India, every payment merchant can register up to 5 mobile no.s for receiving payment messages through SMS linked to the same bank account. So, by using one of these sim cards, we can fetch the details of the payment received. 

The proposed solution uses a SIM800L GSM Module, that can be used to fetch the data from the received SMS. The brain of the circuit is ESP32, which reads these messages and fetches the useful data from the received SMS. This data can be used to speak out the exact amount received to send it to the speaker. For sending this data, we will need some pre-recorded audio messages, which can be stored on an SD Card, and the DFPlayer Mini module used in our device will transmit the data which needs to be called out from the pre-recorded audio messages. The PAM8403 audio amplifier is used to amplify the audio signals and the output of this module is connected to a speaker to call out the amount received. The circuit has an inbuilt DC-DC Buck converter based on the LM2576 IC, which means that the user can provide any DC supply from 7V to 40V for the circuit to operate. The circuit also has reverse voltage protection. There is a provision for connecting an I2C LCD Display to show the amount on the display at the same time when it is called out aloud. This device can prove useful for business merchants that cannot keep their phones occupied on the counter and instead, the Payment Soundbox will be configured such that it will notify other employees that are currently working on the counter.

Hardware Used:

  

The PCBs were designed using EasEDA and sent to the EUROCIRCUITS Team for verification.

    

Later, the complete assembled PCBs were delivered to us for free. The quality of the PCBs is very good and the hardware worked exactly as expected.

Once the PCBs were completely assembled, the next task was to write a stable Firmware for the code.  

The following steps were followed by me, and anyone can follow these steps to make the project from scratch. 

Step 1: GSM Module Settings

  1. SIM Card: For this project, I am using my registered SIM Card, which has SMS notifications enabled. If you don't have a valid SIM card, you can add any of your available SIM cards to the recipient's list by visiting the merchant's website. In my case, the application used was PhonePe(An Indian Payment application).
  2. Once the SIM card is registered, the GSM Module(a module that can send and receive SMS, Calls, etc) is set to receive SMS mode.
  1. Serial.println("AT+CMGF=1");
  2. while (Serial2.available() > 0)
  3. Serial.write(Serial2.read());
  4. delay(1000);
  5. Serial2.println("AT+CNMI=1,2,0,0,0"); // AT Command to recieve a live SMS
  6. while (Serial2.available() > 0)
  7. Serial.write(Serial2.read());
  8. delay(1000);

By using these two commands, the module is set into receive SMS mode and will start fetching SMS. 

Step 2: DFPlayerMini Settings

The DFPlayerMini Module is used to play audio using the various mp3 files already stored in the SD card. For decoding the amount, and calling it out, it has to be bifurcated and only the amount part is to be taken out from the whole SMS string which looks like this.


Step 3: Using this amount, we need to remove the units, tens, and hundreds place of the received amount.

For example: If the received amount is 155. 

  1. int ones = amount % 10;
  2. int tens = (amount / 10) % 10;
  3. int hundreds = (amount / 100) % 10;
  4. int thousands = (amount / 1000) % 10;

The following code will bifurcate the amount(155) into (0 1 5 and 5). Then you can simply call the audio files that are stored on the SD Card.

These files are then called out loud and simultaneously displayed on the LCD Display. 

Step 4: 3D Modelling using Fusion 360

The enclosure for this device was designed using Fusion 360 and 3D printed from a local manufacturer. 



Working:

 

The video below explains the working of the device.


Schematics, diagrams and documents

Schematics

CAD, enclosures and custom parts

3D Model Files

Code

Online Payment SoundBox

Credits

Leave your feedback...