home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / sci / electron / 18694 < prev    next >
Encoding:
Internet Message Format  |  1992-11-10  |  1.9 KB

  1. Path: sparky!uunet!news.tek.com!ogicse!uwm.edu!caen!news.cs.indiana.edu!ux1.cso.uiuc.edu!news.cso.uiuc.edu!usenet
  2. From: tmkk@uiuc.edu (Khan)
  3. Newsgroups: sci.electronics
  4. Subject: Re: Magnetic Swipe Reader Decoders
  5. Message-ID: <BxIItM.A2E@news.cso.uiuc.edu>
  6. Date: 10 Nov 92 18:17:45 GMT
  7. Article-I.D.: news.BxIItM.A2E
  8. References: <kwRVTB1w165w@halcyon.com>
  9. Sender: usenet@news.cso.uiuc.edu (Net Noise owner)
  10. Organization: University of Illinois at Urbana
  11. Lines: 30
  12.  
  13.  
  14. In article <kwRVTB1w165w@halcyon.com> daniel r. mauch <daniel@halcyon.com> writes:
  15. >                               Magnetic Card Swipe Reader
  16. >
  17. >     Some time ago there were several posts about Magnetic Card
  18. >Readers and how to read the data. One of the files even had a C
  19. >program called Swipe.C that would read  the data when a card was
  20. >pushed thought the reader and could be displayed on screen or
  21. >saved to a file.
  22. >
  23. >     A few weeks ago, I bought a SR&D mag card swipe reader in
  24. >San Diego for $2.50. Using the information in the files posts
  25. >dating back to Jan 92 , I was able to connect my swipe reader to
  26. >my PC and using the program could read and store the contents of
  27. >the card. The problem was that the data was a columnar listing of
  28. >255's and 191's. I have deduced that the 255 is FF hex or 1111
  29. >1111. The 191 is BF hex or 1011 1111. Since I am not a
  30. >experienced programmer, I need some help in determining how to
  31. >read the data.
  32.  
  33. What you're seeing is a raw dump of the data from the card reader.
  34. Only one or two bit positions in each byte are significant (bit 6 for
  35. sure, and probably one other - one for clock and one for data and
  36. perhaps a third for card detected). You need to do a bit of work to
  37. "digest" this raw data stream into meaningful data.
  38.  
  39. You say that you are not an experienced programmer; this is by no means
  40. a "beginner" level task, so you may want to get someone with more
  41. experience to sit down with you and play around. This will be really
  42. tough to do over the net. ;-)
  43.