Fingerprint reader (UART) SN-FPR-UART

Discussion about projects that used PIC Microcontroller, Hardware Interface, Programming Algorithm and etc......

Fingerprint reader (UART) SN-FPR-UART

Postby Marvin_G » Mon Nov 05, 2012 4:40 pm

Hello guys,first of all i don't know if i'm in the right category to post this topic but anyway, i wanted to ask about this fingerprint reader (UART) SN-FPR-UART. My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible? That's the first question. Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader? Third question is if it can be connected through UART port then how do we control the fingerprint board? such as sending command to it from the ARM processor. Please help me,i need answers a.s.a.p. Thanks guys.

p/s: I hope someone who already had experience about this device can help me through this.
Marvin_G
Apprentice
 
Posts: 38
Joined: Mon Oct 01, 2012 1:00 pm

Re: Fingerprint reader (UART) SN-FPR-UART

Postby zhenning » Mon Nov 05, 2012 5:10 pm

Marvin_G WROTE:Hello guys,first of all i don't know if i'm in the right category to post this topic but anyway, i wanted to ask about this fingerprint reader (UART) SN-FPR-UART. My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible? That's the first question. Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader? Third question is if it can be connected through UART port then how do we control the fingerprint board? such as sending command to it from the ARM processor. Please help me,i need answers a.s.a.p. Thanks guys.

p/s: I hope someone who already had experience about this device can help me through this.


My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible?
yes its possible.

Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader?
yes, its possible. its easier compared to windows.

how do we control the fingerprint board?
The commands are in the datasheet. To control it in linux, you will need a usb to uart cable. Plug it into your computer or laptop. Do: ls /dev. You should see your uart to usb device. To read from the device use cat. To write to the device use echo.
You need to change the user dialout group:

sudo usermod -a -G tty yourUserName

sudo usermod -a -G dialout yourUserName
zhenning
Enthusiast
 
Posts: 351
Joined: Thu Dec 30, 2010 12:32 am

Re: Fingerprint reader (UART) SN-FPR-UART

Postby shahrul » Mon Nov 05, 2012 5:18 pm

I never use ARM, but I use Fingerprint Reader with PIC. Ex. PIC Fingerprint Reader.
User avatar
shahrul
Professional
 
Posts: 812
Joined: Sat May 16, 2009 9:54 pm
Location: Selangor

Re: Fingerprint reader (UART) SN-FPR-UART

Postby Marvin_G » Mon Nov 05, 2012 5:20 pm

Thank you so much for your answer. I'm thinking using UC00A which is the usb-uart converter but it only have female usb port, does it have male usb port? so i can connect the fingerprint to my ARM board.
Marvin_G
Apprentice
 
Posts: 38
Joined: Mon Oct 01, 2012 1:00 pm

Re: Fingerprint reader (UART) SN-FPR-UART

Postby Marvin_G » Mon Nov 05, 2012 5:22 pm

zhenning WROTE:
Marvin_G WROTE:Hello guys,first of all i don't know if i'm in the right category to post this topic but anyway, i wanted to ask about this fingerprint reader (UART) SN-FPR-UART. My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible? That's the first question. Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader? Third question is if it can be connected through UART port then how do we control the fingerprint board? such as sending command to it from the ARM processor. Please help me,i need answers a.s.a.p. Thanks guys.

p/s: I hope someone who already had experience about this device can help me through this.


My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible?
yes its possible.

Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader?
yes, its possible. its easier compared to windows.

how do we control the fingerprint board?
The commands are in the datasheet. To control it in linux, you will need a usb to uart cable. Plug it into your computer or laptop. Do: ls /dev. You should see your uart to usb device. To read from the device use cat. To write to the device use echo.
You need to change the user dialout group:

sudo usermod -a -G tty yourUserName

sudo usermod -a -G dialout yourUserName



Thank you so much for your answer. I'm thinking using UC00A which is the usb-uart converter but it only have female usb port, does it have male usb port? so i can connect the fingerprint to my ARM board. Plus, what do u mean by "you should see your uart to usb device"? do u hv the cmd for both read n write to d device?
Marvin_G
Apprentice
 
Posts: 38
Joined: Mon Oct 01, 2012 1:00 pm

Re: Fingerprint reader (UART) SN-FPR-UART

Postby Marvin_G » Mon Nov 05, 2012 5:23 pm

shahrul WROTE:I never use ARM, but I use Fingerprint Reader with PIC. Ex. PIC Fingerprint Reader.


How does the device really work? can you take the raw data and put it somewhere else?
Marvin_G
Apprentice
 
Posts: 38
Joined: Mon Oct 01, 2012 1:00 pm

Re: Fingerprint reader (UART) SN-FPR-UART

Postby zhenning » Mon Nov 05, 2012 5:41 pm

Marvin_G WROTE:
zhenning WROTE:
Marvin_G WROTE:Hello guys,first of all i don't know if i'm in the right category to post this topic but anyway, i wanted to ask about this fingerprint reader (UART) SN-FPR-UART. My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible? That's the first question. Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader? Third question is if it can be connected through UART port then how do we control the fingerprint board? such as sending command to it from the ARM processor. Please help me,i need answers a.s.a.p. Thanks guys.

p/s: I hope someone who already had experience about this device can help me through this.


My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible?
yes its possible.

Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader?
yes, its possible. its easier compared to windows.

how do we control the fingerprint board?
The commands are in the datasheet. To control it in linux, you will need a usb to uart cable. Plug it into your computer or laptop. Do: ls /dev. You should see your uart to usb device. To read from the device use cat. To write to the device use echo.
You need to change the user dialout group:

sudo usermod -a -G tty yourUserName

sudo usermod -a -G dialout yourUserName



Thank you so much for your answer. I'm thinking using UC00A which is the usb-uart converter but it only have female usb port, does it have male usb port? so i can connect the fingerprint to my ARM board. Plus, what do u mean by "you should see your uart to usb device"? do u hv the cmd for both read n write to d device?


I dont think so. You can use a male to female converter or wire.

plus, what do u mean by "you should see your uart to usb device"?
When you plug any device into your computer, you will see the device in the device manager right? In linux, type ls /dev, you should see a list of device connected. It is like your device manager in windows
zhenning
Enthusiast
 
Posts: 351
Joined: Thu Dec 30, 2010 12:32 am

Re: Fingerprint reader (UART) SN-FPR-UART

Postby zhenning » Mon Nov 05, 2012 5:42 pm

Did you take a look at this: http://www.cytron.com.my/viewProduct.ph ... NvlbEFEQ7y

There are sample codes available.
zhenning
Enthusiast
 
Posts: 351
Joined: Thu Dec 30, 2010 12:32 am

Re: Fingerprint reader (UART) SN-FPR-UART

Postby Marvin_G » Mon Nov 05, 2012 7:00 pm

zhenning WROTE:Did you take a look at this: http://www.cytron.com.my/viewProduct.ph ... NvlbEFEQ7y

There are sample codes available.



Have you ever used this type of fingerprint? It does comparison but i don't know how. My method is first take raw data which i gained from this fingerprint and put it in database mysql then scan the same fingerprint and match it with those in database. Can i apply it on this device?
Marvin_G
Apprentice
 
Posts: 38
Joined: Mon Oct 01, 2012 1:00 pm

Re: Fingerprint reader (UART) SN-FPR-UART

Postby Marvin_G » Mon Nov 05, 2012 7:13 pm

Marvin_G WROTE:My project involved ARM processor TS-7390 and i wanted to connect this processor with this fingerprint throuh UART port. Is it possible?
yes its possible.

Second is my ARM processor is using Linux debian platform,is it possible to connect it through UART port to the fingerprint reader?
yes, its possible. its easier compared to windows.

how do we control the fingerprint board?
The commands are in the datasheet. To control it in linux, you will need a usb to uart cable. Plug it into your computer or laptop. Do: ls /dev. You should see your uart to usb device. To read from the device use cat. To write to the device use echo.
You need to change the user dialout group:

sudo usermod -a -G tty yourUserName

sudo usermod -a -G dialout yourUserName



Thank you so much for your answer. I'm thinking using UC00A which is the usb-uart converter but it only have female usb port, does it have male usb port? so i can connect the fingerprint to my ARM board. Plus, what do u mean by "you should see your uart to usb device"? do u hv the cmd for both read n write to d device?[/quote]

zhenning WROTE:I dont think so. You can use a male to female converter or wire.

plus, what do u mean by "you should see your uart to usb device"?
When you plug any device into your computer, you will see the device in the device manager right? In linux, type ls /dev, you should see a list of device connected. It is like your device manager in windows



I will be using UC00B which have male usb port..is it ok? do i need driver for it? if yes, can i use the one in dis website http://www.ftdichip.com/FTDrivers.htm ?
Marvin_G
Apprentice
 
Posts: 38
Joined: Mon Oct 01, 2012 1:00 pm

Next

Return to PIC Microcontroller

Who is online

Users browsing this forum: No registered users and 3 guests

cron