I have KOOKYE fingerprint scanner
Device:
https://www.amazon.co.uk/gp/product/B019TPP1UK/ref=s9_simh_gw_g147_i1_r?ie=UTF8&fpl=fresh&pf_rd_m=A3P5ROKL5A1OLE&pf_rd_s=desktop-1&pf_rd_r=0SHK4RN0THZ4NGT6PR3G&pf_rd_t=36701&pf_rd_p=026d359a-cb34-4790-9249-ec9f152ee8e2&pf_rd_i=desktop
I want to connect it to Raspberry Pi 3, but the only library available for this device is for Arduino.
Library:
http://kookye.com/2016/07/24/use-arduino-drive-fingerprint-sensor/
Which is the best way to use the scanner on raspberry pi? Do I need to rewrite the library or I can use an Arduino emulator on Pi? If an emulator is used, how do you make the emulator to listen to the Serial port of the Arduino and which would be better to use?
Related
I need to make the Raspberry Pi communicate with the Arduino via USB Cable. From this, I will use the port on the USB which supports Serial Communication. However I also need to make the Raspberry Pi communicate through Bluetooth in a Mobile App via Serial Communication as well. Since both Serial devices use different ports according the the Raspberry Pi 3 Model B documentation, can it communicate at the same time? (The Arduino to Raspberry Pi and Raspberry Pi to Mobile App). The Bluetooth uses the /dev/ttyAMA0 port then I will use an USB port to connect the Pi to the Arduino.
Example using pySerial library.
serialArduino = serial.Serial('/dev/ttyACM0', 9600)
serialBluetooth = serial.Serial('/dev/ttyAMA0', 9600)
I'm trying connect a Raspberry PI to other equipment via Bluetooth using a Pybluez librarie. It is possible to define a pin in Pybluez to connect to the equipment?
Here You can find the answer for Bluez: http://www.linuxquestions.org/questions/linux-wireless-networking-41/setting-up-bluez-with-a-passkey-pin-to-be-used-as-headset-for-iphone-816003/
I need to connect Raspberry Pi or CubieBoard to my PC as a media device using MTP protocol. Actually I am trying to do USB communication between my PC and Raspberry/CubieBoard. I was not able to find any other way except MTP. Is there any way to do this?
I actually work on a raspberry Pi with a bluetooth dongle and I need to create a bluetooth server on that devices.
I want to be notify when an other devices is pairing with the pi.
So I use the bluecove library.
I think this kind of thing isn't implements into the library.
It's there a way to do that ?
Thanks.
I'm trying to make a bluetooth keyboard(3x4)for Android Phones with the use of any arduino because I'm trying to make that as a Braille keyboard. Is it possible? If it is. What kind of arduino should I use? And any other bluetooth shield?
You need an Arduino uno (or any compatible board) and a bluetooth shield or board for Arduino. You can try out this bluetooth board from sparkfun.
This board connects to Arduino via serial. So you can just used the built-in Serial library.
This board also connects easily with Android devices.