Search results for

nfc

1,176 results found

Post

Replies

Boosts

Views

Activity

Unable to read custom NFC tags on iOS 16.0 (iPhone 13 Pro Max)
Hello, I'm trying to read custom NFC (13.56mhz) tags with my iPhone using an NFC app, but none of them seem to be working (I've tried the three most popular NFC apps). I am writing text to these tags using a RC522 connected to a Raspberry Pi. I know that my scanner is working because I can read and write text to tags. I know NFC on the iPhone is working because the scanner also detected the signal when I opened and activated Apple Pay. Besides that, I am using known-good tags (such as a hotel room key) that also work with my scanner but not my iPhone. Has anyone else encountered this issue? Is there a solution? Thanks.
2
0
2.2k
Oct ’22
iOS NFC read Mifare 1k classic tag's uid
Guys, I need your help, please. What do I need: to get the tag's UID (i.e Serial number) using iOS app What do I have: I have an app Flutter, which works fine on Android (I can read the tag's UID) and do nothing on iOS The card's details (plastic card): Tag type: ISO 14443-3A Technologies available: NfcA, MifareClassic, Ndef Serial number: AB:BF:88:AE (this is i really need to get from the app) Saved message on the tag: My text with spaces On iOS side I created two implementations: one for NFCTagReaderSession, another one for NFCNDEFReaderSession (I do not use it at the same time, only separated) NFCTagReaderSession import UIKit import Flutter import CoreNFC @available(iOS 13.0, *) var session_tag: NFCTagReaderSession? @available(iOS 13.0, *) var flutterResult: FlutterResult! @available(iOS 13.0, *) @UIApplicationMain @objc class AppDelegate: FlutterAppDelegate, NFCTagReaderSessionDelegate { override func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.La
2
0
3.9k
Oct ’22
NFC Certificates requires ApplePay integration
We need to integrate the Digital Card Rfid functionality into the app to allow our users to be able to recharge electric vehicles using NFC functionality. Last year we received a block from Apple because to enable the NFC capability it was mandatory to have integrated the ApplePay SDK within the app. We would like to understand if this constraint is still present and, if necessary, identify a solution to make our current Payment Hub (coexist (web interface for managing / adding payment methods) with Apple Pay.
0
0
582
Oct ’22
Reply to [Issue] Automation forcing to tap on screen - application run command is not reacting to 'ask when run' unslide during connection or disconnection to Carplay
I got a new iPhone 14 Pro, and decided to use Shortcuts to log trips instead of having a trip logging app that drains my battery due to excessive location tracking, which is totally unnecessary for the tax purposes. The beginning and end point of any trip is all I need, not the whole detailed route on a map. I have 2 neat logging shortcuts, one for the departure and one for the arrival, both totally doing a perfect logging of my ODO meter that I store as a generic file. After each trips the name of that file gets updated by a voice input of the car’s ODO meter. Data gets logged in a text file. All data is separated with tabs, making it possible to import the text file contents into a Numbers file when needed. I am pretty stoked I got this far, and love the Shortcuts app! (I tested feeding the Numbers file directly, but the result isn satisfactory since it opens the app and I want all of the processes to run without imperative screen interaction.) Both shortcuts can be triggered flawlessly using Siri in Carpla
Sep ’22
How to read the tamper status from a NTAG 213 TT nfc?
Hi, I'm trying to read the tamper status from a NTAG 213 TT nfc (mifaretag - ultralight). Every time I do a sendMiFareCommand I get an error Tag is not connected. I can read the tag using an app called NFC tools and it shows the tamper status just fine. This is my code: guard tags.count > 0, let tag = tags.first else { session.invalidate() return } print(asd tags count (tags.count) isAvailable (tag.isAvailable)) switch tag { case .miFare(let miFareTag): print(asd family (miFareTag.mifareFamily)) let readBlock4: [UInt8] = [0xA4, 0x00] print(asd 1) if #available(iOS 14, *) { print(asd 2) miFareTag.sendMiFareCommand(commandPacket: Data(readBlock4)) { (result: Result) in print(asd (result)) switch result { case .success(let response): print(asd bem aqui 1 (response)) case .failure(let error): print(asd 1 Read tag error: (error.localizedDescription). Please try again.) } } } else { print(asd 3) miFareTag.sendMiFareCommand(commandPacket: Data(readBlock4)) { (response: Data, optionalError: Error
0
0
755
Sep ’22
iOS 16 seems to ignore com.apple.developer.nfc.readersession.iso7816.select-identifiers
Since iOS 16, all identifiers not registered in Info.plist file as com.apple.developer.nfc.readersession.iso7816.select-identifiers seems to be accepted by the application when reading NFC card. Before iOS 16, the OS immediately rejects the NFC communication. Do you known if it's a simple bug or a modification of the NFC Card Reading feature ?
0
0
1.2k
Sep ’22
General regression of IDN domains in Mail, both on MacOS and iOS
International Domain Names allows non ascii character of non English languages in domaine name and then in email addresses. For many years IDN were correctly handled both on MacOS and iOS. This is no longer the case. iOS Another poster already reported on this forum that IOS mail is no longer able to send mail from an IDN email address, always displaying an incorrect message about an invalid address. This poster only had general incompetent advice from an Apple poster about checking his email account configuration. As this poster already reported an IDN account with worked previously no longer does. I can't date precisely which release of iOS regressed. iOS 15 for sure, 14 possibly. MacOS Since yesterday, I spend time trying to figure out why my S/MIME certificate no longer worked on my Mac, for the same IDN email account. After many test I figured out a partial workaround : the S/MIME certificate is setup with the punnycode form of the IDN domain adding an identity preference for the certificate did no help
2
0
727
Sep ’22
Reply to Apple Watch NFC Tags
I'd love to just touch my apple watch to a nfc tag to turn on the lights when I come home, or turn them off when I leave. Or a million other things that shouldn't require me to take my phone out of my pocket. No, HomePod is not even available here and even if it was it wouldn't be possible to put one in every single room.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
CoreNFC - Empty ndefMessage when upgrading to iOS 16
After upgrading to iOS 16, the code below that I have to read the NDEF contents of an NFC Forum Type 2 Tag now returns an empty string. When running the same code on my iOS 15 device, this code works perfectly. When downgrading my iOS 16 device to iOS 15, this code works perfectly again. I can't find any documentation regarding changes made to CoreNFC in iOS 16 that would be affecting this, can anyone shed any light here please? func readerSession(_ session: NFCNDEFReaderSession, didDetect tags: [NFCNDEFTag]) { print(did detect) let str: String = nfcWriteContent if (tags.count > 1) { let retryInterval = DispatchTimeInterval.milliseconds(500) session.alertMessage = too_many_nfc_detected.localized() DispatchQueue.global().asyncAfter(deadline: .now() + retryInterval, execute: { session.restartPolling() }) return } let tag = tags.first! print(reading...) tag.readNDEF(completionHandler: {(ndefMessage: NFCNDEFMessage?, error: Error?) in var res = if (ndefMessage == nil) { // EVERY NFC SCAN ALW
1
0
1.2k
Sep ’22
Disappointed in AirPods Pro
I’ve only had these for like a year now, and the battery life on them was never really that good. And it has only been getting worse with time. Also, you would think that transparency mode could save batteyr-life but really transparency mode seems to make the battery life even worse than with noise cancellation. I would rather just turn off both transparency mode and noise cancellation without the sound being 10x worse. Where the heck are the controls for AirPod settings? Why isn’t there a section in the settings app for AirPod settings? Why isn’t there a Low Power Mode for AirPods? These are all things that either other Bluetooth wireless headphones have, or Apple has implemented on its’ other devices. Does Apple think they can just totally slack on competitive development for AirPods because they usually sound great; if now the best compared to other Bluetooth pod types? Because I will switch to a better brand soon with more features, better battery, better settings app, etc. -like Bose. I have a pair of Bo
1
0
983
Sep ’22