Fran

Results 10 comments of Fran

@IrakliTabagari it looks like your are trying to execute control method before connect your reader, could you show us your block code to see if you are attempting to execute...

***EDIT*** Sending the following buffered command ```javascript Buffer.from([0xff, 0x00, 0x00, 0x00, 0x16, 0xd4, 0x42, 0x1a, 0x00]) ``` I'm receiving the following: ``` d543019000 ``` I'm missing something, becasuse as I...

Hi @pokusew thanks for your reply. So many usefull doc in that comment ;), thank's a lot. Unfortunately I'm still not able to make the pcsc command works. Let me...

***EDIT*** After multiple tests and having in mind @pokusew advices, I'm able to tell all of you that @pokusew command were right, but I was having and error in the...

Thank's a lot @pokusew, you're right. The code I posted was wrong. In my case was 16 bytes of response length but it was wrong too so I changed to...

@Ionut-Milas have you installed all the needed drivers (https://www.acs.com.hk/en/products/144/acr122l-visualvantage-serial-nfc-reader-with-lcd/#downloads). I guess so cause another project of yours is working fine but I'm working with that device and it's working fine,...

For sure @pokusew , here you can check a kind of approach, the code it's a little bit complex in real app: ```javacscript read(params) { this._authenticate().then((authenticated) => { if(authenticated) return...

> @Franx0 Thanks. > > What is **the value of** `this.config.credit` in the _read method here? > > ```js > console.log(this.config.credit); // const data = await this.reader.read(this.config.credit, 4); > ```...

hi @pokusew as you can see in the following log, there is something weird because the log return a 'transmit response receive' message but this is the flow: Transmit command...

Hi @pokusew Sorry for the delay, these days I was researching about my own code and nfc-pcsc lib to figure out what was happening ;) Here you have my log:...