I used the ACR 122 before and it worked flawlessly with an Android < 4.1 phone. I used it to exchange P2P SNEP messsages... But since the phone got 4.1, the reader starts beeping and flashing when you place the phone above it. Does anyone else have found this incompatibility? Any solutions?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
In Java language, you can use:
1) nfctools: https://github.com/grundid/nfctools . It works on Android 4.0, 4.1, 4.2, 4.3, 4.4.
2) http://code.google.com/p/ismb-snep-java. It works on Android 4.0 and Android 4.4 (but not in 4.1,4.2,4.3). In order to support Samsung devices in 4.4 it requires some changes in the protocol (which can be taken from the nfctools, but it is better to use the nfctools to increase compatibility).
great to see someone else working on this. You can connect to the Reader via "Direct". credits go to Peter Kmet: javax.smartcardio transmit to NFC USB reader without card
This sample will just toggle the Lights
Please update if you make any progress with Jelly Bean, I will checkout your code as well.
I solved the Problem with a small "hack". I am using the ACR122U with a SAM Module in it, do not know which Versions have this it's the TouchATag Reader. I found out that the reader has to pass this line, also when the phone is not in the NFC Field:
This is because you have to put the reader into inializer mode before the phone comes into the nfc field, and this only works if you can send APDUs!
If somebody finds a solution to send APDUs without calling
connect()
on thecardTerminal
.This Problem is not related to the higher bitrates, I managed to get a communication with 424 kbps.
You can find a NFC API I have written with this knowledge in googel code, I will also provide some documentation there:
http://code.google.com/p/java-android-beam-api/
Comments are very welcome!
Since Android 4.1 Jelly Bean, NFC peer-to-peer communication is configured to use a higher bitrate (212 kbps), while earlier it was using 106 kbps (in Android devices that have Google Wallet installed it was always using 212 kbps).
I don't know whether the ACR122U can support the higher bitrate through
javax.smartcardio
. The NFC chip inside (NXP's PN532) can certainly do it. The low-level ISO18092/ECMA-340 protocol for 212 and 424 kbps is different from 106 kbps. With 106 kbps it uses the same modulation as ISO14443, while the higher bitrates use the same modulation as FeliCa (see page 7 and 8 of the standard). So I suspect this cannot be handled throughjavax.smartcardio
.This can be helpful to make a connection to terminal without a card in range: