Dfrobot Dissolved Oxygen meter reading 0 voltage

For context I did exactly as this tutorial said: https://www.youtube.com/watch?v=BHmkOjJRYwE&t=676s and I use an Arduino uno board

Serial monitor shows 0 voltage. Could it be that my board is broken? It overheated after I did a project just before I tested the meter so I thought maybe the voltage regulator is broken.

Additional info: code

#include <Arduino.h>
 
#define VREF    5000//VREF(mv)
#define ADC_RES 1024//ADC Resolution
 
uint32_t raw;
 
void setup()
{
    Serial.begin(9600);
}
 
void loop()
{
    raw=analogRead(A1);
    Serial.println("raw:\t"+String(raw)+"\tVoltage(mv)"+String(raw*VREF/ADC_RES));
    delay(1000);
}

how did you connect and power the board? a drawing of your circuit and link to the exact pH sensor model you have would help too

PS:
please, please never ever again post pictures of text... Not only they are not readable nor usable directly for copy&paste but they use up lots of storage and internet bandwidth which contributes to polluting the planet.

➜ do your part and do yourself a favour and please read How to get the best out of this forum

Here's the link.

did you do this ?

Yes, I did everything in the instructions

can you post a (in focus) close up of your wiring (the real device / connexion to the arduino) ?

can you make sure you connected to A1 and not A0 ?
did you plug the 5V and GND wires ?

Could be.
Can you download and run the blink example?