Fingerprint Scanner (GT-521Fxx) Not Working

Hi!
I am trying to connect my finger print scanner with arduino using logic level converter. My sensor is working fine with SDK_DEMO.exe software when I connect with my PC port. But not working with arduino. I am only receivng this:
FPS - Open
FPS - SEND: "55 AA 01 00 00 00 00 00 01 00 01 01"

#include "FPS_GT511C3.h"
#include "SoftwareSerial.h"

FPS_GT511C3 fps(4, 5);

void setup()

{

Serial.begin(9600); //set up Arduino's hardware serial UART

fps.UseSerialDebug = true; // so you can see the messages in the serial debug screen

fps.Open(); //send serial command to initialize fps

}

void loop()

{

// FPS Blink LED Test

fps.SetLED(true); // turn on the LED inside the fps

delay(1000);

fps.SetLED(false);// turn off the LED inside the fps

delay(1000);

}

################### CIRCUT ####################
I am following this example:
Just to clarify last 2 lines:
I connected PIN4 to HV and then connect from HV to 5V pin of arduino.
I connected directly LV of converter to 3.3V pin of arduino


I moved your topic to an appropriate forum category @elahi52523.

In the future, please take some time to pick the forum category that best suits the subject of your topic. There is an "About the _____ category" topic at the top of each category that explains its purpose.

This is an important part of responsible forum usage, as explained in the "How to get the best out of this forum" guide. The guide contains a lot of other useful information. Please read it.

Thanks in advance for your cooperation.

Sorry but "not working" tells nothing useful.

There are some 20 different "arduinos".....

Please read and use this link: How to get the best out of this forum - Using Arduino / Project Guidance - Arduino Forum

Check your wiring with the Arduino. Show how the scanner is connected to the PC.