Loading...
Logo
Processing Forum
Following the post in the "old" forum, I developed a library for Processing that allows users to connect and read from cheap touchatag RFID readers on the Windows platform.

This library affords the simultaneously connection of multiple readers, and up to three tags on each one (due to performance issues of the tags themselves on the touchatag reader). This project was tested on Windows 7 Professional and Windows XP SP3, with Processing 1.0.9.

You can download it here. For this library to work, users only need to install the Windows CCID PCSC driver, the touchatag software client isn't necessary. For more information head to the library's page on Google code.

Example:
Copy code
  1. import touchatag.*;
  2. Touchatag rfid;

  3. // Defines the maximum number of touchatag
  4. // readers that might be connected to the computer 
  5. int numOfReaders = 3;

  6. // This library affords up to three touchatag
  7. // tags on each of the touchatag readers
  8. String[][] tags = new String[numOfReaders][3];

  9. void setup() {
  10.   // Optionally, if only one touchatag reader will
  11.   // be used: rfid = new Touchatag(this) 
  12.   rfid = new Touchatag(this, numOfReaders);
  13. }

  14. void draw() {
  15.   // Gets the number of touchatag readers connected
  16.   int readers = rfid.On();
  17.   
  18.   if (readers != 0) {
  19.      // Gets the tags for each of the touchatag readers
  20.      for (int i = 0; i < readers; i++) {
  21. tags[i] = rfid.tagsOnReader(i);
  22. println(tags[i]);
  23.      }  
  24.    }
  25. }

Replies(37)

Can I have some test subjects for the Mac version of this library? :)

To install it just drop it in the normal Processing/libraries folder. Additionally, move both libnfc.0.dylib and  libusb-0.1.4.dylib to /usr/local/lib


(You just need to have the touchatag drivers:  http://www.acs.com.hk/drivers/eng/ACR122USAM_inst_MAC10.56_101_P.zip )

The Mac version has been officially released. Feel free to report any issues :)

thanks for the library and i am quite happy that it is also available for mac right now.
I just ordered a touchatag starter kit. Might be going to use it in one of my workshops with some students
I'm glad to hear that. Let me know if any issues arise.
Hi

I am currently using the library with one touchatag reader. I plan to buy some more as soon as they are in stock again.

Is there a way to identify each reader uniquely (by a serial number like the tags for example) when you have multiple readers to ensure that each time the app runs it is able to know which reader is which, rather than just that there are 3 of them?

Thanks

Nick
Hi Nick,

The way I do it is to associate each reader with a position of a vector, that way you always know which is which.
Thanks for that. I can see how to do that, but I'm assuming that will only work if the number of readers stays the same each time the programme runs, and position in the array may change if readers are plugged in different usb ports on the machine. I can see how to do it within any single run of the program, but I am thinking about a touring rig that may get setup in different configurations still being able to identify a particular reader in code.
Hey,

I've started using this library a couple of days ago , but I'm sort of stuck at this point , I'm trying to get a sort of identifier or event or anything for when a tag is removed ( in this case I'm trying to pause an audio file when the tag is gone) got any suggestions ? Here's the code of the fucntion i'm using for checking , it might not be the best though..

Copy code
  1. void playMusic(String[] tagList)
  2.   {  
  3.         
  4.        for (int i = 0; i < tagList.length; i++) 
  5.     {
  6.        
  7.        
  8.       if (tagList[i].equals("04c5aa51962280") && !player.isPlaying() && playing==false)
  9.         { 
  10.           playing = true;
  11.           player.play();
  12.         }
  13.      //print(tagList[i]);
  14.     
  15.      if (!tagList[i].equals("04c5aa51962280") && playing==true)
  16.        { 
  17.          playing = false;
  18.          player.pause();
  19.        }
  20.     }
  21.   }
EDIT : I have also tried checking if it is null, but to no luck..
Have you tried your code with a predefined array to see if it works? What happens when you run your code?
hey augustoest,
told you i am going to use them for some kind of workshops.
Thats what i am currently doing, and we realized the mac drivers dont work very well. The framerate drops down to 2-3 frames even with the simplest sketches getting slower and slower, looks like some memory issue... we had have that problem with every mac we tested it on. Are you aware of that problem? If you need some more information let me know...
I wasn't aware of that problem, I ported the code a bit in a rush. I'm really sorry if it caused you any problems. Unfortunately I can't work on it right now, but if you want I can send you the source code for the library. My email is augustoeae@gmail.com.
thanks, but i worry i dont have much experience in developing such drivers.
But i even realized that it is not working perfect on windows as well.
its not as bad as on mac systems thats why i didn't realized it earlier but on pcs it runs slow as well. it gets down to 5 frames as soon as i work with the reader no matter what the sketch is actually doing.

we tested it on about 14 different pcs as i am using your library for my students projects and they get the same problem on every system with different OS, processing and Java versions...

If you get the chance to look into it, that would be great!

 
That's so strange, I've worked with the Windows version on a couple of applications and I never had any problems (even on different computers). I'll take a look.
thanks that would be nice. if i can help you or test, let me know.


Hello,
I've recently started using the library with the goal to output a timestamped CSV file whenever a tag is detected. I'm using PrintWriter and CreateWriter at the moment for generating the CSV file.

I'm having trouble getting the tagid written as a string to the text file...is there an easy way to do this?
At the moment I've very simply modified the example like this:
Copy code
  1. void draw() {
  2.   // Gets the number of touchatag readers connected
  3.   int readers = rfid.On();
  4.   
  5.   if (readers != 0) {
  6.      // Gets the tags for each of the touchatag readers
  7.      for (int i = 0; i < readers; i++) {
  8.        tags[i] = rfid.tagsOnReader(i);
  9.        println(rfid.tagsOnReader(i));
  10.        output.println(rfid.tagsOnReader(i));
  11.      }  
  12.    }  
  13. }
But it seems that the output.println is spitting out different stuff than what's appearing in the processing console...
Have you tried using the values in tags[i]?
Got it working after I realised that the tags were stored in an array. I used a join command to spit the tag id's out to a txt file
Copy code
  1. stringtags = join(tags[i], ", ");
At least it's working now ... only thing is that it refreshes the reader value every 3 seconds or so. Any ideas to increase the reading speed?
@augustoest, did you get the chance to check? do you get similar results?
Hi,

After evaluating the app I'm making some more, I'm experiencing simular problems as @cedrickiefer. The initial framerate when starting my sketch is about 9FPS and keeps dropping down over time.
Also, the void draw() seems to refresh only every 3 seconds, whereas I would expect it to refresh together with the framerate.

So, I'm suspecting there's a memory leak somewhere in the library ... hoping for a fix, or I could try looking at the driver but I've got no idea if I can solve it ^^
Small update:
I tried running my program on windows instead of OSX, it's running a lot better there. The readings from the reader are almost instant. However, when checking the framerate, it starts 'normal' but goes down to about 4.2FPS (using println(frameRate); ).
At the moment I'm not using a graphical output, but I can imagine that when using interactive graphics this drop in framerate can be limiting.

If I can be of any help testing /  looking at the drivers, I'll try to check back here.
funkelicious, if you want I can send you the source code. Unfortunately, I really don't have the opportunity to look into this matter at this moment.
Copy code
  1. edit: increased stability by moving the rfid.on from draw to setup. again example only for 1 reader :)

Copy code
  1. import touchatag.*; 
  2. Touchatag rfid;  
  3. int numOfReaders = 1;  
  4. String a;
  5. String[][] tags = new String[numOfReaders][1];  

  6. void setup()             {   
  7. rfid = new Touchatag(this); 
  8. a = "";
  9. int readers = rfid.On(); }   

  10. void draw() {   
  11. tags[0] = rfid.tagsOnReader(0); 
  12. if (join(tags[0],"").equals("")) {a = "";}
  13.   else {
  14.     if (join(tags[0],"").equals(a)) {}
  15.     else {
  16.      a = join(tags[0],"");
  17.      open("check.vbs " + a);
  18.      delay(3000);
  19.          }
  20.        }    }

sample for check.vbs

Copy code
  1. 'setsoundfile = "notify.wav"  
  2. 'set objshell = createobject("wscript.shell")
  3. 'strcommand = "sndrec32 /play /close " & chr(34) & setsoundfile & chr(34)
  4. 'objshell.run strcommand,0,false

  5. Set args = WScript.Arguments
  6. arg1 = args.Item(0) 

  7. msgbox arg1





Thank you for your great library. Really appreciate someone taking the time to bring Touchatag over to Processing.

I'm using the mac version, and when I drag the two files you've specified over to the install folder, I get an error "The action “Move Finder Items” encountered an error. Check the actionʼs properties and try running the workflow again."

Do you have any possible solutions? Thank you!

Cooper
You can move these files manually to ~/Processing/libraries/touchatag/library/

Hope it works :)
still doesnt work for me. I have an acr122ua9 , with latest low level drivers installed and the hardware works (in the sense that it glows red, scan a tag and it goes green and beeps) but i get the libnfc.dylib error in processing 1.5.1 on mac osx 10.6.8
I am getting a similar error to @ coopersmith, I am also running it on a Mac.  This is the error:

Exception in thread "Animation Thread" java.lang.UnsatisfiedLinkError: /Users/trevor.hogan/Documents/Processing/libraries/touchatag/library/libnfc.dylib:  Library not loaded: /usr/local/lib/libusb-0.1.4.dylib   Referenced from: /Users/trevor.hogan/Documents/Processing/libraries/touchatag/library/libnfc.dylib   Reason: no suitable image found.  Did find:  /usr/local/lib/libusb-0.1.4.dylib: stat() failed with errno=13  /usr/local/lib/libusb-0.1.4.dylib: stat() failed with errno=13

I did have trouble installing the .dylib files, but I managed to move them to the lib folder manually.

Any thoughts?
im having smae problem, moved files manually. did you get it to work ?
The link for the library download doesn't seem to be working any more.
Could you post up a new link for the library?

Thanks
Loraine
The link is fixed, thanks :)
hello;
i'm starting to implement a touchatag reader and i don't know how to proceed :(
if any one can help me or sending me and exemple source code??
thank you!
yeah i find this exemple but i need to know how to implement the reader the hole project i don'y know how to proceed!!thx
Hi,

I'm having some troubles with the library on a mac, whenever I start the example sketch without a tag on the rfid reader I get the  ArrayIndexOutOfBoundsException: 0 error on this line:

 "tags[i] = rfid.tagsOnReader(i);" 

When I start the sketch with a tag on the reader it works ok and I can detect additional tags, but when I remove the initial tag from the reader The sketch quits unexpectedly and give this: 

"Invalid memory access of location 0x0 eip=0x3b9c47" error in the processing log

I'm using a acr122u-A9 reader which is almost the same as a touchatag branded reader, has this something to do with it?

Any thoughts how I might resolve this?

Thanks
I assume the problem is due to the fact you're not using the touchatag reader. Even with no tags on it, it shouldn't give you that error on tags[i] = rfid.tagsOnReader(i);

Before trying to read tags, have you checked it's length? E.g.:
Copy code
  1. String[] tags = rfid.tagsOnReader(i);

  2. if (tags.length != 0) {
  3.    // Code
  4. }
Hello All

My touchatag has connected without a hitch to processing 1.51, and the code sample works well. Sadly thats about it. I am wanting to integrate the touchatag system into a music player. At the moment I can't even get processing to recognize which tag has just been read. Here is my code sample.

import touchatag.*;
Touchatag rfid;
int numOfReaders = 3;
String[][] tags = new String[numOfReaders][3];


void setup() {
  rfid = new Touchatag(this);
  size (200,200);
  background (20);
  int readers = rfid.On();
}

void draw() {
      tags[0] = rfid.tagsOnReader(0);
      if(tags[0].equals("04c32f193e2580")){
         println("this works");
      }
      
 println(tags[0]);
}


But I never get a "this works" message in the monitor. I am very new to processing, and this does not seem to help.

Can anyone show me the error of my ways.

Many thanks
Will
I can spot this this error:

if(tags[0].equals("04c32f193e2580")) -> You're comparing an array with a string

Assuming you only have one reader, you can try something like:

import touchatag.*;
Touchatag rfid;

String[] tags = new String[3];

void setup() {
      rfid = new Touchatag(this);
      size (200,200);
      background (20);
}

void draw() {
      int reader = rfid.On();

      if (reader) {
            tags = rfid.tagsOnReader(0);
            if (tags[0].equals("04c32f193e2580")) println("this works!");
      }  
}
@ ashleyjamesbrown

Do you have the  Java SE 6 32bit installed correctly?