I have written a code but it keeps giving me a error MESSAGE

This is the error message:
Arduino: 1.8.19 (Windows Store 1.8.57.0) (Windows 10), Board: "Arduino Uno"

sketch_aug10a1:3:10: fatal error: PulseSensorPlayground.h: No such file or directory

#include <PulseSensorPlayground.h> // Includes the PulseSensorPlayground Library

      ^~~~~~~~~~~~~~~~~~~~~~~~~

compilation terminated.

exit status 1

PulseSensorPlayground.h: No such file or directory

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

The code I made is

`#define USE_ARDUINO_INTERRUPTS true // Set-up low-level interrupts for most acurate BPM math.
#include <PulseSensorPlayground.h> // Includes the PulseSensorPlayground Library.
#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h> // F Malpartida's NewLiquidCrystal library
#define I2C_ADDR 0x27 // Define I2C Address for controller
#define En_pin 2
#define Rw_pin 1
#define Rs_pin 0
#define D4_pin 4
#define D5_pin 5
#define D6_pin 6
#define D7_pin 7
#define BACKLIGHT 3

LiquidCrystal_I2C lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
 
// Variables
const int PulseWire = 0; // PulseSensor PURPLE WIRE connected to ANALOG PIN 0
const int LED13 = 13; // The on-board Arduino LED, close to PIN 13.
int Threshold = 550; // Determine which Signal to "count as a beat" and which to ignore.
// Use the "Gettting Started Project" to fine-tune Threshold Value beyond default setting.
// Otherwise leave the default "550" value.
 
PulseSensorPlayground pulseSensor; // Creates an instance of the PulseSensorPlayground object called "pulseSensor"
void setup() {
 
Serial.begin(9600); // For Serial Monitor
lcd.begin(20,4);
lcd.setBacklightPin(BACKLIGHT,POSITIVE);
lcd.setBacklight(HIGH);
 
// Configure the PulseSensor object, by assigning our variables to it.
pulseSensor.analogInput(PulseWire);
pulseSensor.blinkOnPulse(LED13); //auto-magically blink Arduino's LED with heartbeat.
pulseSensor.setThreshold(Threshold);
 
// Double-check the "pulseSensor" object was created and "began" seeing a signal.
if (pulseSensor.begin()) {
Serial.println("We created a pulseSensor Object !"); //This prints one time at Arduino power-up, or on Arduino reset.
lcd.setCursor(0,0);
lcd.print(" Heart Rate Monitor");
 
}
}
 
void loop() {
 
int myBPM = pulseSensor.getBeatsPerMinute(); // Calls function on our pulseSensor object that returns BPM as an "int".
// "myBPM" hold this BPM value now.
if (pulseSensor.sawStartOfBeat()) { // Constantly test to see if "a beat happened".
Serial.println("♥ A HeartBeat Happened ! "); // If test is "true", print a message "a heartbeat happened".
Serial.print("BPM: "); // Print phrase "BPM: "
Serial.println(myBPM); // Print the value inside of myBPM.
lcd.setCursor(0,2);
lcd.print("HeartBeat Happened !"); // If test is "true", print a message "a heartbeat happened".
lcd.setCursor(5,3);
lcd.print("BPM: "); // Print phrase "BPM: "
lcd.print(myBPM);
}
delay(20); // considered best practice in a simple sketch.
}`

how to fix it?

Download and install the library. https://docs.arduino.cc/software/ide-v1/tutorials/installing-libraries

install PulseSensorPlayground library

How should i download it? i am kinda new

Using the library manager in the IDE.

this is the error:
Arduino: 1.8.19 (Windows Store 1.8.57.0) (Windows 10), Board: "Arduino Uno"

C:\Users\rwgrg\Documents\Arduino\libraries\jm_LiquidCrystal_I2C\fm_I2CIO.cpp:29:10: fatal error: jm_Scheduler.h: No such file or directory

Multiple libraries were found for "LiquidCrystal.h"

#include <jm_Scheduler.h>

Used: C:\Users\hdjdjs\Documents\Arduino\libraries\LiquidCrystal

      ^~~~~~~~~~~~~~~~

Not used: C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.57.0_x86__mdqgnx93n4wtt\libraries\LiquidCrystal

compilation terminated.

exit status 1

Error compiling for board Arduino Uno.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

this is the code i made:

#include <MAX3010x.h>
#include <Wire.h>
#include <LiquidCrystal.h>
#include <jm_LiquidCrystal_I2C.h>

#define USE_ARDUINO_INTERRUPTS true // Set-up low-level interrupts for most acurate BPM math.
#define I2C_ADDR 0x27 // Define I2C Address for controller
#define En_pin 2
#define Rw_pin 1
#define Rs_pin 0
#define D4_pin 4
#define D5_pin 5
#define D6_pin 6
#define D7_pin 7
#define BACKLIGHT 3

LiquidCrystal_I2C lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
 
// Variables
const int PulseWire = 0; // PulseSensor PURPLE WIRE connected to ANALOG PIN 0
const int LED13 = 13; // The on-board Arduino LED, close to PIN 13.
int Threshold = 550; // Determine which Signal to "count as a beat" and which to ignore.
// Use the "Gettting Started Project" to fine-tune Threshold Value beyond default setting.
// Otherwise leave the default "550" value.
 
PulseSensorPlayground pulseSensor; // Creates an instance of the PulseSensorPlayground object called "pulseSensor"
void setup() {
 
Serial.begin(9600); // For Serial Monitor
lcd.begin(20,4);
lcd.setBacklightPin(BACKLIGHT,POSITIVE);
lcd.setBacklight(HIGH);
 
// Configure the PulseSensor object, by assigning our variables to it.
pulseSensor.analogInput(PulseWire);
pulseSensor.blinkOnPulse(LED13); //auto-magically blink Arduino's LED with heartbeat.
pulseSensor.setThreshold(Threshold);
 
// Double-check the "pulseSensor" object was created and "began" seeing a signal.
if (pulseSensor.begin()) {
Serial.println("We created a pulseSensor Object !"); //This prints one time at Arduino power-up, or on Arduino reset.
lcd.setCursor(0,0);
lcd.print(" Heart Rate Monitor");
 
}
}
 
void loop() {
 
int myBPM = pulseSensor.getBeatsPerMinute(); // Calls function on our pulseSensor object that returns BPM as an "int".
// "myBPM" hold this BPM value now.
if (pulseSensor.sawStartOfBeat()) { // Constantly test to see if "a beat happened".
Serial.println("♥ A HeartBeat Happened ! "); // If test is "true", print a message "a heartbeat happened".
Serial.print("BPM: "); // Print phrase "BPM: "
Serial.println(myBPM); // Print the value inside of myBPM.
lcd.setCursor(0,2);
lcd.print("HeartBeat Happened !"); // If test is "true", print a message "a heartbeat happened".
lcd.setCursor(5,3);
lcd.print("BPM: "); // Print phrase "BPM: "
lcd.print(myBPM);
}
delay(20); // considered best practice in a simple sketch.
}

From the error message the problem seems clear. The compiler cannot find the file named jm_Scheduler.h

Have you installed the library of that name and, if so, where is it located on your PC ?

I am not sure i downloaded it from the manage library option in IDE windows store version how to find it?

Look for a folder in your Sketchbook location (the folder where your sketches are saved) named libraries. What folders to you have in that folder ?

Which version of the IDE are you using ?

i am using windows store 1.8.57.0 version

I suggest that you install version 2.1.1 from https://www.arduino.cc/en/software

The Windows Store version seems for some people and is not up to date

I downloaded the newer version but it shows the same error

Have you established that the file named jm_Scheduler.h is on your PC

You have not listed the folders in your libraries folder as previously requested

C:\Users\kjeqrwi\AppData\Local\Temp.arduinoIDE-unsaved2023710-12512-yd7ja0.wmn47\sketch_aug10a\sketch_aug10a.ino:1:10: fatal error: jm_LiquidCrystal_I2C.h: No such file or directory
#include <jm_LiquidCrystal_I2C.h>
^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.

exit status 1

Compilation error: jm_LiquidCrystal_I2C.h: No such file or directory

the same error

C:\Users\kjeqrwi\AppData\Local\Temp.arduinoIDE-unsaved2023710-12512-yd7ja0.wmn47\sketch_aug10a\sketch_aug10a.ino:1:10: fatal error: jm_LiquidCrystal_I2C.h: No such file or directory
#include <jm_LiquidCrystal_I2C.h>
^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.

exit status 1

Compilation error: jm_LiquidCrystal_I2C.h: No such file or directory

how to fix this error?

Is this file on your computer? Usually the filename is LiquidCrystal_I2C.h (without the "jm_")

yes i downloaded it from the library

and where exactly is this file located on your computer? It need to be in your libraries folder under the library name

Cross post reported

The best way to install libraries is to use the IDE library manager. That will make sure that the library files go to the right place(s).

Is there a reason that you are using that particular library?

The hd45780 library is a much better library for hd44780 controlled, I2C enabled character displays like the 1602 or 2004. That library is availabe for installation via yhe library manager.