Skip to content

Commit

Permalink
Add an NFC parser for the San Francisco Bay Area "Clipper" transit ca…
Browse files Browse the repository at this point in the history
…rd. (#3344)

* Add an NFC parser for the San Francisco Bay Area "Clipper" transit card.

* Add more agencies and stations, decode vehicle ids, refactor.

Add more agencies and station names using data from local research
and:

* Metrodroid project (GPLv3): https://github.com/metrodroid/metrodroid
* Farebot (GPLv3): https://github.com/codebutler/farebot

---------

Co-authored-by: gornekich <n.gorbadey@gmail.com>
Co-authored-by: hedger <hedger@users.noreply.github.com>
  • Loading branch information
3 people committed Feb 6, 2024
1 parent 2c784d3 commit a83e421
Show file tree
Hide file tree
Showing 2 changed files with 630 additions and 0 deletions.
9 changes: 9 additions & 0 deletions applications/main/nfc/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,15 @@ App(
sources=["plugins/supported_cards/umarsh.c"],
)

App(
appid="clipper_parser",
apptype=FlipperAppType.PLUGIN,
entry_point="clipper_plugin_ep",
targets=["f7"],
requires=["nfc"],
sources=["plugins/supported_cards/clipper.c"],
)

App(
appid="hid_parser",
apptype=FlipperAppType.PLUGIN,
Expand Down

0 comments on commit a83e421

Please sign in to comment.